cryptoexchange icon indicating copy to clipboard operation
cryptoexchange copied to clipboard

Huulk Integration

Open estherleongym opened this issue 6 years ago • 0 comments

  • Add Pairs, Tickers, OrderBook, Trade URL, and updated README for Huulk
  • Closes: #1122
  • [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 and target is assigned correctly
  • [X] I have implemented the trade_page_url method that links to the root domain of the exchange website.
  • [X] I have verified at least ONE ticker volume matches volume shown on the trading page (use script below) - (Volume from trades made in the last 24 hours on trading page need to be manually summed)
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

estherleongym avatar Nov 11 '18 11:11 estherleongym