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: string

    • The amount of the traded base token.

  • order_type: OrderType

    • An order type.

  • price: string

    • The price at which the trade was concluded.

  • quote_ticker_amount: string

    • The amount of the traded quote token.

  • time: string

    • The timestamp of the order creation, expressed in seconds.

Last updated