OrderId |
string |
Order ID |
[optional] |
AmendText |
string |
The custom data that the user remarked when amending the order |
[optional] |
Text |
string |
User defined information. If not empty, must follow the rules below: 1. prefixed with `t-` 2. no longer than 28 bytes without `t-` prefix 3. can only include 0-9, A-Z, a-z, underscore(_), hyphen(-) or dot(.) |
[optional] |
Succeeded |
bool |
Whether the batch of orders succeeded |
[optional] |
Label |
string |
Error label, if any, otherwise an empty string |
[optional] |
Message |
string |
Detailed error message, if any, otherwise an empty string |
[optional] |
Id |
string |
Order ID |
[optional] [readonly] |
CreateTime |
string |
Creation time of order |
[optional] [readonly] |
UpdateTime |
string |
Last modification time of order |
[optional] [readonly] |
CreateTimeMs |
int64 |
Creation time of order (in milliseconds) |
[optional] [readonly] |
UpdateTimeMs |
int64 |
Last modification time of order (in milliseconds) |
[optional] [readonly] |
Status |
string |
Order status - `open`: to be filled - `closed`: filled - `cancelled`: cancelled |
[optional] [readonly] |
CurrencyPair |
string |
Currency pair |
[optional] |
Type |
string |
Order Type - limit : Limit Order - market : Market Order |
[optional] [default to TYPE_LIMIT] |
Account |
string |
Account type. spot - use spot account; margin - use margin account; cross_margin - use cross margin account, unified - unified account |
[optional] [default to ACCOUNT_SPOT] |
Side |
string |
Order side |
[optional] |
Amount |
string |
Trade amount |
[optional] |
Price |
string |
Order price |
[optional] |
TimeInForce |
string |
Time in force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only - poc: PendingOrCancelled, makes a post-only order that always enjoys a maker fee - fok: FillOrKill, fill either completely or none |
[optional] [default to TIME_IN_FORCE_GTC] |
Iceberg |
string |
Amount to display for the iceberg order. Null or 0 for normal orders. Hiding all amount is not supported. |
[optional] |
AutoBorrow |
bool |
Used in margin or cross margin trading to allow automatic loan of insufficient amount if balance is not enough. |
[optional] |
AutoRepay |
bool |
Enable or disable automatic repayment for automatic borrow loan generated by cross margin order. Default is disabled. Note that: 1. This field is only effective for cross margin orders. Margin account does not support setting auto repayment for orders. 2. `auto_borrow` and `auto_repay` can be both set to true in one order. |
[optional] |
Left |
string |
Amount left to fill |
[optional] [readonly] |
FilledAmount |
string |
Amount traded to fill |
[optional] [readonly] |
FillPrice |
string |
Total filled in quote currency. Deprecated in favor of `filled_total` |
[optional] [readonly] |
FilledTotal |
string |
Total filled in quote currency |
[optional] [readonly] |
AvgDealPrice |
string |
Average fill price |
[optional] [readonly] |
Fee |
string |
Fee deducted |
[optional] [readonly] |
FeeCurrency |
string |
Fee currency unit |
[optional] [readonly] |
PointFee |
string |
Points used to deduct fee |
[optional] [readonly] |
GtFee |
string |
GT used to deduct fee |
[optional] [readonly] |
GtDiscount |
bool |
Whether GT fee discount is used |
[optional] [readonly] |
RebatedFee |
string |
Rebated fee |
[optional] [readonly] |
RebatedFeeCurrency |
string |
Rebated fee currency unit |
[optional] [readonly] |
StpId |
int32 |
Orders between users in the same `stp_id` group are not allowed to be self-traded 1. If the `stp_id` of two orders being matched is non-zero and equal, they will not be executed. Instead, the corresponding strategy will be executed based on the `stp_act` of the taker. 2. `stp_id` returns `0` by default for orders that have not been set for `STP group` |
[optional] [readonly] |
StpAct |
string |
Self-Trading Prevention Action. Users can use this field to set self-trade prevetion strategies 1. After users join the `STP Group`, he can pass `stp_act` to limit the user's self-trade prevetion strategy. If `stp_act` is not passed, the default is `cn` strategy。 2. When the user does not join the `STP group`, an error will be returned when passing the `stp_act` parameter。 3. If the user did not use 'stp_act' when placing the order, 'stp_act' will return '-' - cn: Cancel newest, Cancel new orders and keep old ones - co: Cancel oldest, Cancel old orders and keep new ones - cb: Cancel both, Both old and new orders will be cancelled |
[optional] |
FinishAs |
string |
How the order was finished. - open: processing - filled: filled totally - cancelled: manually cancelled - ioc: time in force is `IOC`, finish immediately - stp: cancelled because self trade prevention |
[optional] [readonly] |