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