class Cryptoexchange::Exchanges::Idex::Services::Trades
Public Instance Methods
adapt(output, market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/idex/services/trades.rb, line 16 def adapt(output, market_pair) output.collect do |trade| tr = Cryptoexchange::Models::Trade.new tr.trade_id = trade['uuid'] tr.base = market_pair.base tr.target = market_pair.target tr.type = trade['type'] tr.price = trade['price'] tr.amount = trade['amount'] tr.timestamp = trade['timestamp'] tr.payload = trade tr.market = Idex::Market::NAME tr end end
fetch(market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/idex/services/trades.rb, line 5 def fetch(market_pair) params = {} params['market'] = "#{market_pair.target}_#{market_pair.base}" output = fetch_using_post(ticker_url, params) adapt(output, market_pair) end
ticker_url()
click to toggle source
# File lib/cryptoexchange/exchanges/idex/services/trades.rb, line 12 def ticker_url "#{Cryptoexchange::Exchanges::Idex::Market::API_URL}/returnTradeHistory" end