class Binance::Responses::AggTradeEntry

Overview

Typical server response {

"a": 26129,         // Aggregate tradeId
"p": "0.01633102",  // Price
"q": "4.70443515",  // Quantity
"f": 27781,         // First tradeId
"l": 27781,         // Last tradeId
"T": 1498793709153, // Timestamp
"m": true,          // Was the buyer the maker?
"M": true           // Was the trade the best price match?

}

Included Modules

Defined in:

binance/client/rest/responses/agg_trade_entry.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

Instance Method Detail

def first_trade_id : Int64 #

def is_best_match : Bool #

def is_buyer_maker : Bool #

def last_trade_id : Int64 #

def price : Float64 #

def quantity : Float64 #

def time : Time #

def trade_id : Int64 #