class Cryptoexchange::Exchanges::Coinzest::Services::Market

Public Class Methods

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

Public Instance Methods

adapt(market_pair, output) click to toggle source
# File lib/cryptoexchange/exchanges/coinzest/services/market.rb, line 34
def adapt(market_pair, output)
  ticker = Cryptoexchange::Models::Ticker.new
  ticker.base = market_pair.base
  ticker.target = market_pair.target
  ticker.market = Coinzest::Market::NAME
  ticker.last = NumericHelper.to_d(output['Last'])
  ticker.bid = NumericHelper.to_d(output['Bid'])
  ticker.ask = NumericHelper.to_d(output['Ask'])
  ticker.high = NumericHelper.to_d(output['High'])
  ticker.low = NumericHelper.to_d(output['Low'])
  ticker.volume = NumericHelper.to_d(output['BaseVolume']/output['Last'])
  ticker.timestamp = output['TimeStamp']/1000
  ticker.payload = output
  ticker
end
adapt_all(output) click to toggle source
# File lib/cryptoexchange/exchanges/coinzest/services/market.rb, line 22
def adapt_all(output)
  output['result'].map do |pair|
    target, base = pair['MarketName'].split('-')
    market_pair = Cryptoexchange::Models::MarketPair.new(
                    base: base,
                    target: target,
                    market: Coinzest::Market::NAME
                  )
    adapt(market_pair, pair)
  end
end
fetch() click to toggle source
# File lib/cryptoexchange/exchanges/coinzest/services/market.rb, line 10
def fetch
  ctx = OpenSSL::SSL::SSLContext.new
  ctx.verify_mode = OpenSSL::SSL::VERIFY_NONE
  result = HTTP.get(ticker_url, ssl_context: ctx)
  output = JSON.parse(result)
  adapt_all(output)
end
ticker_url() click to toggle source
# File lib/cryptoexchange/exchanges/coinzest/services/market.rb, line 18
def ticker_url
  "#{Cryptoexchange::Exchanges::Coinzest::Market::API_URL}/market_summary"
end