class Cryptoexchange::Exchanges::Maplechange::Services::Market
Public Class Methods
supports_individual_ticker_query?()
click to toggle source
# File lib/cryptoexchange/exchanges/maplechange/services/market.rb, line 6 def supports_individual_ticker_query? false end
Public Instance Methods
adapt(output)
click to toggle source
# File lib/cryptoexchange/exchanges/maplechange/services/market.rb, line 34 def adapt(output) return unless output[1]['ticker']['name'] target, base = output[1]['ticker']['name'].split("/") ticker = Cryptoexchange::Models::Ticker.new ticker.base = base ticker.target = target ticker.market = Maplechange::Market::NAME ticker.ask = NumericHelper.to_d(output[1]['ticker']['sell']) ticker.bid = NumericHelper.to_d(output[1]['ticker']['buy']) ticker.last = NumericHelper.to_d(output[1]['ticker']['last']) ticker.change = NumericHelper.to_d(output[1]['ticker']['change']) ticker.high = NumericHelper.to_d(output[1]['ticker']['high']) ticker.low = NumericHelper.to_d(output[1]['ticker']['low']) ticker.volume = NumericHelper.to_d(output[1]['ticker']['vol']) ticker.timestamp = output[1]['at'] ticker.payload = output ticker end
adapt_all(output)
click to toggle source
# File lib/cryptoexchange/exchanges/maplechange/services/market.rb, line 21 def adapt_all(output) output.map do |ticker| symbol = ticker[0].upcase # base, target = symbol.split(/(BTC$)+|(ETH$)+|(WAE$)+|(LTC$)+|(XGOX$)+|(EGEM$)+|(XSH$)+/) # market_pair = Cryptoexchange::Models::MarketPair.new( # base: base, # target: target, # market: Maplechange::Market::NAME # ) adapt(ticker) end end
fetch()
click to toggle source
Calls superclass method
Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/maplechange/services/market.rb, line 11 def fetch output = super(ticker_url) adapt_all(output) end
ticker_url()
click to toggle source
# File lib/cryptoexchange/exchanges/maplechange/services/market.rb, line 16 def ticker_url "#{Cryptoexchange::Exchanges::Maplechange::Market::API_URL}/tickers.do" end