Class: Cryptoexchange::Exchanges::Vbitex::Services::Market
- Inherits:
-
Services::Market
- Object
- Services::Market
- Cryptoexchange::Exchanges::Vbitex::Services::Market
- Defined in:
- lib/cryptoexchange/exchanges/vbitex/services/market.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Services::Market
Class Method Details
.supports_individual_ticker_query? ⇒ Boolean
6 7 8 |
# File 'lib/cryptoexchange/exchanges/vbitex/services/market.rb', line 6 def supports_individual_ticker_query? false end |
Instance Method Details
#adapt(output) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/cryptoexchange/exchanges/vbitex/services/market.rb', line 26 def adapt(output) base, target = output['symbol'].split('_') ticker = Cryptoexchange::Models::Ticker.new ticker.base = base ticker.target = target ticker.market = Vbitex::Market::NAME ticker.last = NumericHelper.to_d(HashHelper.dig(output, 'new_price')) ticker.high = NumericHelper.to_d(HashHelper.dig(output, '24H_max', 'price')) ticker.low = NumericHelper.to_d(HashHelper.dig(output, '24H_min', 'price')) ticker.volume = NumericHelper.to_d(output['volume_24h']) ticker. = NumericHelper.to_d(output['submit_time']) ticker.payload = output ticker end |
#adapt_all(output) ⇒ Object
21 22 23 24 |
# File 'lib/cryptoexchange/exchanges/vbitex/services/market.rb', line 21 def adapt_all(output) output.map { |market_data| adapt(market_data) } end |
#fetch ⇒ Object
11 12 13 14 |
# File 'lib/cryptoexchange/exchanges/vbitex/services/market.rb', line 11 def fetch output = super(ticker_url) adapt_all(output) end |
#ticker_url ⇒ Object
16 17 18 |
# File 'lib/cryptoexchange/exchanges/vbitex/services/market.rb', line 16 def ticker_url "#{Cryptoexchange::Exchanges::Vbitex::Market::API_URL}/Home/markets/tickers" end |