class Cryptoexchange::Exchanges::Chaoex::Services::Trades

Constants

TRADES_LIMIT

Public Instance Methods

adapt(output, market_pair) click to toggle source
# File lib/cryptoexchange/exchanges/chaoex/services/trades.rb, line 18
def adapt(output, market_pair)
  output['attachment'].collect do |trade|
    tr           = Cryptoexchange::Models::Trade.new
    tr.trade_id  = trade['tid']
    tr.base      = market_pair.base
    tr.target    = market_pair.target
    tr.market    = Chaoex::Market::NAME
    tr.type      = trade['type']
    tr.price     = trade['price']
    tr.amount    = trade['amount']
    tr.timestamp = trade['date'].to_i / 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/chaoex/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/chaoex/services/trades.rb, line 12
def ticker_url(market_pair)
  base_id   = market_pair.base_id
  target_id = market_pair.target_id
  "#{Cryptoexchange::Exchanges::Chaoex::Market::API_URL}/quote/tradeHistory?baseCurrencyId=#{target_id}&tradeCurrencyId=#{base_id}&limit=#{TRADES_LIMIT}"
end