class Cryptoexchange::Exchanges::Crxzone::Services::Market
Public Class Methods
supports_individual_ticker_query?()
click to toggle source
# File lib/cryptoexchange/exchanges/crxzone/services/market.rb, line 6 def supports_individual_ticker_query? true end
Public Instance Methods
adapt(output, market_pair)
click to toggle source
# File lib/cryptoexchange/exchanges/crxzone/services/market.rb, line 25 def adapt(output, market_pair) ticker = Cryptoexchange::Models::Ticker.new ticker.base = market_pair.base ticker.target = market_pair.target ticker.market = Crxzone::Market::NAME ticker.ask = NumericHelper.to_d(output['Ask']) ticker.bid = NumericHelper.to_d(output['Bid']) ticker.last = NumericHelper.to_d(output['Last']) ticker.high = NumericHelper.to_d(output['High']) ticker.low = NumericHelper.to_d(output['Low']) ticker.volume = NumericHelper.to_d(output['Volume']) ticker.timestamp = output['TimeStamp'] ticker.payload = output ticker end
fetch(market_pair)
click to toggle source
Calls superclass method
Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/crxzone/services/market.rb, line 11 def fetch(market_pair) result = IdFetcher.get_id(market_pair.base.upcase, market_pair.target.upcase) if result.length > 0 pair = result.first pair_id = pair["ID"] output = super(ticker_url(pair_id)) adapt(output["Result"], market_pair) end end
ticker_url(pair_id)
click to toggle source
# File lib/cryptoexchange/exchanges/crxzone/services/market.rb, line 21 def ticker_url(pair_id) "#{Cryptoexchange::Exchanges::Crxzone::Market::API_URL}/Ticker?currencyPairID=#{pair_id}" end