class Cryptoexchange::Exchanges::Cointiger::Services::Market

Constants

TARGETS

Public Class Methods

supports_individual_ticker_query?() click to toggle source
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 6
def supports_individual_ticker_query?
  false
end

Public Instance Methods

adapt(output, market_pair) click to toggle source
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 34
def adapt(output, market_pair)
  ticker           = Cryptoexchange::Models::Ticker.new
  ticker.base      = market_pair.base
  ticker.target    = market_pair.target
  ticker.market    = Cointiger::Market::NAME
  ticker.ask       = NumericHelper.to_d(output['lowestAsk'])
  ticker.bid       = NumericHelper.to_d(output['highestBid'])
  ticker.last      = NumericHelper.to_d(output['last'])
  ticker.high      = NumericHelper.to_d(output['high24hr'])
  ticker.low       = NumericHelper.to_d(output['low24hr'])
  ticker.volume    = NumericHelper.to_d(output['baseVolume'])
  ticker.timestamp = nil
  ticker.payload   = output
  ticker
end
adapt_all(output) click to toggle source
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 21
def adapt_all(output)
  output.map do |ticker|
    symbol = ticker[0]
    base, target = strip_pairs(symbol)
        market_pair = Cryptoexchange::Models::MarketPair.new(
                        base: base,
                        target: target,
                        market: Cointiger::Market::NAME
                      )
        adapt(ticker[1], market_pair)
  end
end
fetch() click to toggle source
Calls superclass method Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 12
def fetch
  output = super(ticker_url)
  adapt_all(output)
end
strip_pairs(pair_symbol) click to toggle source
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 50
def strip_pairs(pair_symbol)
  #Match last 3 or 4 if it hits target
  last_6 = pair_symbol[-6..-1]
  last_4 = pair_symbol[-4..-1]
  last_3 = pair_symbol[-3..-1]

  if TARGETS.include? last_6
    base = pair_symbol[0..-7]
    target = last_6
  elsif
    TARGETS.include? last_4
    base = pair_symbol[0..-5]
    target = last_4
  elsif TARGETS.include? last_3
    base = pair_symbol[0..-4]
    target = last_3
  end

  [base, target]
end
ticker_url() click to toggle source
# File lib/cryptoexchange/exchanges/cointiger/services/market.rb, line 17
def ticker_url
  "#{Cryptoexchange::Exchanges::Cointiger::Market::MARKET_URL}"
end