Class: Cryptoexchange::Exchanges::C2cx::Services::Market

Inherits:
Services::Market show all
Defined in:
lib/cryptoexchange/exchanges/c2cx/services/market.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Services::Market

#fetch_using_post

Class Method Details

.supports_individual_ticker_query?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/cryptoexchange/exchanges/c2cx/services/market.rb', line 6

def supports_individual_ticker_query?
  true
end

Instance Method Details

#adapt(response, market_pair) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/cryptoexchange/exchanges/c2cx/services/market.rb', line 22

def adapt(response, market_pair)
  data             = response['data']
  ticker           = Cryptoexchange::Models::Ticker.new
  ticker.base      = market_pair.base
  ticker.target    = market_pair.target
  ticker.market    = C2cx::Market::NAME
  ticker.low       = NumericHelper.to_d(data['low'])
  ticker.high      = NumericHelper.to_d(data['high'])
  ticker.last      = NumericHelper.to_d(data['last'])
  ticker.bid       = NumericHelper.to_d(data['buy'])
  ticker.ask       = NumericHelper.to_d(data['sell'])         
  ticker.volume    = NumericHelper.to_d(data['volume'])
  ticker.timestamp = data['timestamp'].to_i
  ticker.payload   = data
  ticker
end

#fetch(market_pair) ⇒ Object



11
12
13
14
# File 'lib/cryptoexchange/exchanges/c2cx/services/market.rb', line 11

def fetch(market_pair)
  response = super(ticker_url(market_pair))
  adapt(response, market_pair)
end

#ticker_url(market_pair) ⇒ Object



16
17
18
19
20
# File 'lib/cryptoexchange/exchanges/c2cx/services/market.rb', line 16

def ticker_url(market_pair)
  base   = market_pair.base.upcase
  target = market_pair.target.upcase
  "#{Cryptoexchange::Exchanges::C2cx::Market::API_URL}/ticker/?symbol=#{target}_#{base}"
end