Class: Cryptoexchange::Exchanges::Maplechange::Services::Market

Inherits:
Services::Market
  • Object
show all
Defined in:
lib/cryptoexchange/exchanges/maplechange/services/market.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Services::Market

#fetch_using_post

Class Method Details

.supports_individual_ticker_query?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/cryptoexchange/exchanges/maplechange/services/market.rb', line 6

def supports_individual_ticker_query?
  false
end

Instance Method Details

#adapt(output) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# 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

#fetchObject



11
12
13
14
# File 'lib/cryptoexchange/exchanges/maplechange/services/market.rb', line 11

def fetch
  output = super(ticker_url)
  adapt_all(output)
end

#ticker_urlObject



16
17
18
# File 'lib/cryptoexchange/exchanges/maplechange/services/market.rb', line 16

def ticker_url
  "#{Cryptoexchange::Exchanges::Maplechange::Market::API_URL}/tickers.do"
end