add (pending limit order)

Places a pending limit order at a specified price. The taker can define either the order size or the volume

POST pending/add

Method works similar to the api/add

{
    "instrument": "string",
    "clientOrderId": "int",
    "price": "int",
    "size": "int",
    "volume": "int",
    "side": "string" // "ask" or "bid" (case-insensitive)
}

Response description

Cancel Reason: Specifies why an order was canceled (e.g., user action, system failure).

Last updated