LogoLogo
  • Introduction
  • Get started
  • Trading Account
  • Signing
  • REST API
    • Account
      • Get Account Info
      • Get Positions
      • Get ABR payments
    • Market
      • Get Markets
      • Get Assets
      • Get Orderbook
    • Trade
      • Create Order
      • Cancel Order
      • Query order
      • List historical orders
      • List active orders
      • Trade list
    • Time
  • Web Sockets
    • Authentication
    • Connectivity check
    • Subscription
    • Public topics
      • trade
      • marketInfo
      • orderBook
      • accountCreated
      • kline
    • Private topics
      • conditionalOrder
      • balance
      • order
      • fill
  • Glossary
Powered by GitBook
On this page
  1. Web Sockets
  2. Private topics

order

  id: string;
  accountId: string;
  signature: string[];
  marketId: string;
  type: OrderType;
  side: OrderSide;
  direction: OrderDirection;
  status: OrderStatus;
  isPendingExpiration?: boolean;
  isPendingCancellation?: boolean;
  isPendingRejection?: boolean;
  price: number;
  quantity: number;
  quantityLocked: number;
  quantityFilled: number;
  leverage: number;
  slippage: number;
  postOnly: boolean;
  timeInForce: OrderTimeInForce;
  clientTimestamp: number;
  rejectionReason?: OrderRejectionReasonDTO;
  createdAt: number;
  updatedAt: number;
  expiresAt?: number;
PreviousbalanceNextfill

Last updated 1 year ago