Standardized wrapper around the different cryptocurrency exchanges.
ExchangeWrapper is a Ruby Gem that attempts to come up with a standardized set of methods that can be used to obtain data from Cryptocurrency exchanges.
Refer to the Methods section below for a list of the methods, example usage, and example return format.
If you have any issues or if you’d like to contribute please visit the Contributing section below.
This table shows the methods that are supported per exchange.
Exchange | #holdings | #symbols | #trading_pairs | #prices | #metadata | #volume | #backfill | #orders |
---|---|---|---|---|---|---|---|---|
Binance | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | Hard | ? |
Bitstamp | ? | ✔ | ✔ | ✔ | ✔ | ✔ | ✘ | ? |
Bittrex | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | Hard | ? |
CEX.io | ? | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
Coinbase | ✔ | ✘ | ✘ | ✘ | ✘ | ✘ | ✘ | ? |
COSS.io | ✘ | ✘ | ✘ | ✘ | ✘ | ✘ | ✘ | ✘ |
Cryptopia | ? | ✔ | ✔ | ✔ | ✔ | ✔ | ✘ | ? |
Gate.io | ? | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
GDAX | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
Gemini | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
Kraken | ? | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
KuCoin | ? | ✔ | ✔ | ✔ | ✔ | ✔ | Hard | ? |
Mercatox | ✘ | ✔ | ✔ | ✔ | ✔ | ✔ | ✘ | ✘ |
Poloniex | ? | ✔ | ✔ | ✔ | ✔ | ✔ | Easy | ? |
#holdings
(get the data via GDAX) and even then #holdings
should be converted to utilize OAuth instead of API Key/Secret.#backfill
isn’t implemented yet so it is an estimation (Easy/Hard) of the difficulty needed in order to support it.#orders
isn’t implemented yet but this shouldn’t be so challenging, left it ambiguous (?) for now.Add this line to your application’s Gemfile:
gem 'exchange_wrapper'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install exchange_wrapper
#holdings(key, secret)
:
:Utils.holdings(key, secret)
{
'BTC': 4.311689,
'ETH': 0.877610923,
'LTC': 25.10899999
}
nil
values and amounts cannot be 0
values (returns only symbols with non-zero amount values)#symbols
:
:Utils.symbols
[
'BTC',
'ETH',
'LTC',
'NANO',
'TRX'
]
nil
values returned#trading_pairs
:
:Utils.trading_pairs
[
['ADA/BTC', 'ADA', 'BTC'],
['AST/ETH', 'AST', 'ETH'],
['ENJ/BTC', 'ENJ', 'BTC'],
['NULS/BNB', 'NULS', 'BNB'],
['ZIL/ETH', 'ZIL', 'ETH']
]
nil
values returned#prices
:
:Utils.prices
[
{"symbol":"BCH/BTC","price":"0.11030000"},
{"symbol":"EVX/BTC","price":"0.00018065"},
{"symbol":"QSP/BNB","price":"0.02124000"},
{"symbol":"SUB/ETH","price":"0.00053616"}
]
nil
values returned#metadata
:
:Utils.metadata
[
{"symbol":"BCH/BTC",...},
{"symbol":"BTC/USD",...},
{"symbol":"ETH/EUR",...},
{"symbol":"ETH/USD",...},
{"symbol":"LTC/BTC",...}
]
nil
, all other values are subject to the APIvolume
in the future#volume
::ExchangeWrapper::Cexio::Utils.volume
[
{"symbol":"BTC/USD","base_volume":"1335.28640364","quote_volume":"10558777.2367833"},
{"symbol":"ETH/USD","base_volume":"2894.99957400","quote_volume":"1595144.765274"},
{"symbol":"BCH/USD","base_volume":"283.50156497","quote_volume":"270176.99141641"}
]
nil
values returnedlow
price (no quote_volume
or vwap
provided)#backfill
#orders
Bug reports and pull requests are welcome on GitHub at https://github.com/ChalupaIO/exchange_wrapper. Please fork the gem, make your changes in your fork, then create a PR to this repo.
If you’d like to contact me about something I am reachable at eric@chalupa.io.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
.
(Admin only) To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.