Skip to content

lackac/justcoin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Justcoin

API client for Justcoin.

Gem Version Build Status Code Climate

Installation

Add this line to your application's Gemfile:

gem 'justcoin'

And then execute:

$ bundle

Or install it yourself as:

$ gem install justcoin

Usage

Example

client = Justcoin.new(ENV['JUSTCOIN_KEY'])

# fetch current BTC balance
btc = client.balances.detect {|b| b.currency == "BTC"}

# fetch market stats for BTCSTR
btcstr = client.markets.detect {|m| m.id == "BTCSTR"}

# sell half of available BTC for STR in a limit order
client.place_order(:btcstr, :ask, btcstr.ask-0.001, btc.available/2)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request