class Cryptoexchange::Exchanges::Oax::Services::Trades
Constants
- HTTP_METHOD
Public Instance Methods
adapt(output, market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/oax/services/trades.rb, line 16 def adapt(output, market_pair) output['data'].collect do |trade| tr = Cryptoexchange::Models::Trade.new tr.trade_id = trade['id'] tr.base = market_pair.base tr.target = market_pair.target tr.market = Oax::Market::NAME tr.type = trade['type'] tr.price = trade['price'] tr.amount = trade['qty'] tr.timestamp = trade['createTimeMs']/1000 tr.payload = trade tr end end
fetch(market_pair)
click to toggle source
Calls superclass method
Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/oax/services/trades.rb, line 7 def fetch(market_pair) output = super(ticker_url(market_pair)) adapt(output, market_pair) end
ticker_url(market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/oax/services/trades.rb, line 12 def ticker_url(market_pair) "#{Cryptoexchange::Exchanges::Oax::Market::API_URL}/market/getTrades?market=#{market_pair.base}/#{market_pair.target}" end