class Cryptoexchange::Exchanges::Bitmart::Services::Trades

Public Instance Methods

adapt(output, market_pair) click to toggle source
# File lib/cryptoexchange/exchanges/bitmart/services/trades.rb, line 15
def adapt(output, market_pair)
  output.map do |trade|
    tr = Cryptoexchange::Models::Trade.new
    tr.base      = market_pair.base
    tr.target    = market_pair.target
    tr.market    = Bitmart::Market::NAME

    tr.price     = trade['price']
    tr.amount    = trade['amount']
    tr.type      = trade['entrustType'] == 0 ? "buy" : "sell"
    tr.timestamp = trade['createTime'] / 1000
    tr.payload   = trade
    
    tr
  end
end
fetch(market_pair) click to toggle source
Calls superclass method Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/bitmart/services/trades.rb, line 6
def fetch(market_pair)
  output = super(ticker_url(market_pair))
  adapt(output, market_pair)
end
ticker_url(market_pair) click to toggle source
# File lib/cryptoexchange/exchanges/bitmart/services/trades.rb, line 11
def ticker_url(market_pair)
  "#{Cryptoexchange::Exchanges::Bitmart::Market::API_URL}/market/deal?symbol=#{market_pair.inst_id}"
end