Represents a quote trade data model.
Field | Type | Required | Description |
---|---|---|---|
symbol_id |
Optional[str] | ➖ | The symbol identifier. |
time_exchange |
date | ➖ | The exchange time of the quote trade. |
time_coinapi |
date | ➖ | The CoinAPI time when the quote trade was received. |
ask_price |
Optional[float] | ➖ | The best asking price. |
ask_size |
Optional[float] | ➖ | The volume resting on the best ask. If the value is equal to zero, then the size is unknown. |
bid_price |
Optional[float] | ➖ | The best bidding price. |
bid_size |
Optional[float] | ➖ | The volume resting on the best bid. If the value is equal to zero, then the size is unknown. |
last_trade |
Optional[components.V1LastTrade] | ➖ | Represents the last executed transaction. |