Justcoin
API client for Justcoin.
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request