Price
Parameter: price
Type: decimal
Required: No (only for pending orders)
Description:
- The price at which the order should be executed.
- This parameter is only relevant for pending orders (e.g., limit or stop orders).
- It is ignored for market orders.
Example:
JSON
{
"action": "PENDING",
"price": 1.2345
}
Note:
- The
price
parameter is optional for market orders. - If
action
is set toPENDING
, theprice
parameter must be specified. - Incorrect or missing
price
values may result in unexpected behavior for pending orders.