module Gemini::V1::TradesClient
Public Instance Methods
listen_trades(pair="BTCUSD", &block)
click to toggle source
Listen to the trades using websocket.
@param pair [string] @param block [Block] The code to be executed when a new trade is executed @example:
client.listen_trades do |trade| puts trade.inspect end
# File lib/gemini/v1/trades.rb, line 25 def listen_trades(pair="BTCUSD", &block) raise BlockMissingError unless block_given? register_channel pair:pair, channel: 'trades', &block end
trades(symbol="btcusd", params={})
click to toggle source
Get a list of the most recent trades for the given symbol.
@param symbol [string] the name of the symbol @param params :timestamp [time] Only show trades at or after this timestamp. @param params :limit_trades [int] Limit the number of trades returned. Must be >= 1. @return [Array] @example:
client.trades
# File lib/gemini/v1/trades.rb, line 12 def trades(symbol="btcusd", params={}) check_params(params, %i{timestamp limit_trades}) get("trades/#{symbol}", params).body end