Class: Cryptoexchange::Exchanges::Crex24::Services::Trades
Constant Summary
collapse
- COUNTS =
1000
Instance Method Summary
collapse
#fetch_using_post, supports_individual_ticker_query?
Instance Method Details
#adapt(output, market_pair) ⇒ Object
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# 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) ⇒ Object
7
8
9
10
|
# 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) ⇒ Object
12
13
14
|
# 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
|