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) #

[View source]

Instance Method Detail

def first_trade_id : Int64 #

[View source]
def is_best_match : Bool #

[View source]
def is_buyer_maker : Bool #

[View source]
def last_trade_id : Int64 #

[View source]
def price : Float64 #

[View source]
def quantity : Float64 #

[View source]
def time : Time #

[View source]
def trade_id : Int64 #

[View source]