Bittrex v3.0.0-alpha.2 Bittrex.Order View Source

A Bittrex Order.

Link to this section Summary

Types

t()
  • id: unique ID of this order.
  • market_name: unique name of the market this order is being placed on.
  • direction: order direction.
  • type: order type.
  • quantity: quantity.
  • limit: limit price, if present.
  • ceiling: ceiling, if present.
  • time_in_force: time in force.
  • fill_quantity: fill quantity.
  • commission: commission.
  • proceeds: proceeds.
  • client_order_id: client-provided identifier for advanced order tracking.
  • status: order status.
  • created_at: timestamp (UTC) of order creation.
  • updated_at: timestamp (UTC) of last order update.
  • closed_at: imestamp (UTC) when this order was closed

Link to this section Types

Link to this type

t() View Source
t() :: %Bittrex.Order{
  ceiling: number(),
  client_order_id: String.t(),
  closed_at: NaiveDateTime.t(),
  commission: number(),
  created_at: NaiveDateTime.t(),
  direction: String.t(),
  fill_quantity: number(),
  id: String.t(),
  limit: number(),
  market_name: String.t(),
  proceeds: number(),
  quantity: number(),
  status: String.t(),
  time_in_force: String.t(),
  type: String.t(),
  updated_at: NaiveDateTime.t()
}

  • id: unique ID of this order.
  • market_name: unique name of the market this order is being placed on.
  • direction: order direction.
  • type: order type.
  • quantity: quantity.
  • limit: limit price, if present.
  • ceiling: ceiling, if present.
  • time_in_force: time in force.
  • fill_quantity: fill quantity.
  • commission: commission.
  • proceeds: proceeds.
  • client_order_id: client-provided identifier for advanced order tracking.
  • status: order status.
  • created_at: timestamp (UTC) of order creation.
  • updated_at: timestamp (UTC) of last order update.
  • closed_at: imestamp (UTC) when this order was closed.