Trade
The Trade type represents an order that has been completed.
interface Trade {
base_ticker_amount: string;
order_type: OrderType;
price: string;
quote_ticker_amount: string;
time: string;
}Properties
base_ticker_amount: stringThe amount of the traded base token.
order_type: OrderTypeAn order type.
price: stringThe price at which the trade was concluded.
quote_ticker_amount: stringThe amount of the traded quote token.
time: stringThe timestamp of the order creation, expressed in seconds.
Last updated