class Cryptoexchange::Exchanges::Getbtc::Services::Trades

Public Instance Methods

adapt(output, market_pair) click to toggle source
# File lib/cryptoexchange/exchanges/getbtc/services/trades.rb, line 14
def adapt(output, market_pair)
  trades = []
  output['transactions'].each_value do |trade|
    next unless trade['currency'] == market_pair.target

    tr = Cryptoexchange::Models::Trade.new
    tr.base      = market_pair.base
    tr.target    = market_pair.target
    tr.market    = Getbtc::Market::NAME
    tr.trade_id  = trade['id']
    tr.type      = trade['maker_type']
    tr.price     = trade['price']
    tr.amount    = trade['btc']
    tr.timestamp = trade['timestamp'].to_i
    tr.payload   = trade
    trades << tr
  end
  trades
end
fetch(market_pair) click to toggle source
Calls superclass method Cryptoexchange::Services::Market#fetch
# File lib/cryptoexchange/exchanges/getbtc/services/trades.rb, line 5
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/getbtc/services/trades.rb, line 10
def ticker_url(market_pair)
  "#{Cryptoexchange::Exchanges::Getbtc::Market::API_URL}/transactions?currency=#{market_pair.target}"
end