cryptoexchange
cryptoexchange copied to clipboard
Bitkop Integration
- Add Pairs, Tickers, OrderBook, Trades, Trade URL, and updated README
- Closes: #1132
- [X] I have added Specs
- [X] (If implementing Market Ticker) I have verified that the
volume
refers to BASE - [X] (If implementing Market Ticker) I have verified that the
base
andtarget
is assigned correctly - [X] I have implemented the
trade_page_url
method that links to the exchange page with thebase
andtarget
passed in. If not available, enter the root domain of the exchange website. - [X] I have verified at least ONE ticker volume matches volume shown on the trading page but it shows quote volume
client = Cryptoexchange::Client.new
pairs = client.pairs 'exchange_name'
tickers = pairs.map do |p| client.ticker p end
sorted_tickers = tickers.sort_by do |t| t.volume end.reverse