class Cryptoexchange::Exchanges::Bithumb::Services::Market

Public Class Methods

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

Public Instance Methods

adapt(output, market_pair, date) click to toggle source
# File lib/cryptoexchange/exchanges/bithumb/services/market.rb, line 33
def adapt(output, market_pair, date)
  market = output
  if output.empty?
    nil
  else
    ticker = Cryptoexchange::Models::Ticker.new
    ticker.base = market_pair.base
    ticker.target = market_pair.target
    ticker.market = Bithumb::Market::NAME
    ticker.ask = NumericHelper.to_d(market['sell_price'])
    ticker.bid = NumericHelper.to_d(market['buy_price'])
    ticker.last = NumericHelper.to_d(market['closing_price'])
    ticker.high = NumericHelper.to_d(market['max_price'])
    ticker.low = NumericHelper.to_d(market['min_price'])
    #use 1day volume instead of 7days
    ticker.volume = NumericHelper.to_d(market['volume_1day'])
    ticker.timestamp = date.to_i / 1000
    ticker.payload = market
    ticker
  end
end
adapt_all(output) click to toggle source
# File lib/cryptoexchange/exchanges/bithumb/services/market.rb, line 20
def adapt_all(output)
  output['data'].map do |target, ticker|
    base = target
    target = 'KRW'
    market_pair = Cryptoexchange::Models::MarketPair.new(
                    base: base,
                    target: target,
                    market: Bithumb::Market::NAME
                  )
    adapt(ticker, market_pair, output['data']['date'])
  end.compact
end
fetch() click to toggle source
Calls superclass method Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/bithumb/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/bithumb/services/market.rb, line 16
def ticker_url
  "#{Cryptoexchange::Exchanges::Bithumb::Market::API_URL}/public/ticker/all"
end