class Cryptoexchange::Exchanges::Crex24::Services::Trades
Constants
- COUNTS
Public Instance Methods
adapt(output, market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/crex24/services/trades.rb, line 16 def adapt(output, market_pair) output['Trades'].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 = Crex24::Market::NAME tr.type = trade['IsSell'] ? "sell" : "buy" tr.price = trade['CoinPrice'] tr.amount = trade['CoinCount'] tr.timestamp = trade['DtCreateTS'].to_i tr.payload = trade tr end end
fetch(market_pair)
click to toggle source
Calls superclass method
Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/crex24/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/crex24/services/trades.rb, line 12 def ticker_url(market_pair) "#{Cryptoexchange::Exchanges::Crex24::Market::API_URL}/ReturnTradeHistoryPub?request=[PairName=#{market_pair.target}_#{market_pair.base}][Count=#{COUNTS}]" end