Class: Cryptoexchange::Exchanges::TrustDex::Services::Market
- Inherits:
-
Services::Market
- Object
- Services::Market
- Cryptoexchange::Exchanges::TrustDex::Services::Market
- Defined in:
- lib/cryptoexchange/exchanges/trust_dex/services/market.rb
Class Method Summary collapse
Instance Method Summary collapse
- #adapt(output, market_pair) ⇒ Object
- #adapt_all(output) ⇒ Object
- #fetch ⇒ Object
- #ticker_url ⇒ Object
Methods inherited from Services::Market
Class Method Details
.supports_individual_ticker_query? ⇒ Boolean
8 9 10 |
# File 'lib/cryptoexchange/exchanges/trust_dex/services/market.rb', line 8 def supports_individual_ticker_query? false end |
Instance Method Details
#adapt(output, market_pair) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/cryptoexchange/exchanges/trust_dex/services/market.rb', line 39 def adapt(output, market_pair) ticker = Cryptoexchange::Models::Ticker.new ticker.base = market_pair.base ticker.target = market_pair.target ticker.market = TrustDex::Market::NAME ticker.last = NumericHelper.to_d(output['last']) ticker.high = NumericHelper.to_d(output['highestBid']) ticker.low = NumericHelper.to_d(output['lowestAsk']) ticker.volume = NumericHelper.to_d(output['quoteVolume']) ticker. = nil ticker.payload = output ticker end |
#adapt_all(output) ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/cryptoexchange/exchanges/trust_dex/services/market.rb', line 22 def adapt_all(output) tickers = [] output.map do |pair| pair.each do |key, value| target, base = key.split("_") market_pair = Cryptoexchange::Models::MarketPair.new({ base: base, target: target, market: TrustDex::Market::NAME }) tickers << adapt(value, market_pair) end end tickers end |
#fetch ⇒ Object
13 14 15 16 |
# File 'lib/cryptoexchange/exchanges/trust_dex/services/market.rb', line 13 def fetch output = super(ticker_url) adapt_all(output) end |
#ticker_url ⇒ Object
18 19 20 |
# File 'lib/cryptoexchange/exchanges/trust_dex/services/market.rb', line 18 def ticker_url "#{Cryptoexchange::Exchanges::TrustDex::Market::API_URL}/return_ticket.php" end |