You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/BatchAmendItem.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,5 @@ Name | Type | Description | Notes
13
13
**amount** | **String** | trade amount, only one of amount and price can be specified | [optional]
14
14
**price** | **String** | trade price, only one of amount and price can be specified | [optional]
15
15
**amendText** | **String** | Custom info during amending order | [optional]
16
+
**actionMode** | **String** | Processing Mode: When placing an order, different fields are returned based on action_mode. This field is only valid during the request and is not included in the response result ACK: Asynchronous mode, only returns key order fields RESULT: No clearing information FULL: Full mode (default) | [optional]
**orderId** | **Long** | Order id, order_id and text must contain at least one | [optional]
11
+
**text** | **String** | User-defined order text, at least one of order_id and text must be passed | [optional]
12
+
**size** | **Long** | The new order size, including the executed order size. - If it is less than or equal to the executed quantity, the order will be cancelled. - The new order direction must be consistent with the original one. - The size of the closing order cannot be modified. - For orders that only reduce positions, if the size is increased, other orders that only reduce positions may be kicked out. - If the price is not modified, reducing the size will not affect the depth of the queue, and increasing the size will place it at the end of the current price. | [optional]
13
+
**price** | **String** | New order price. | [optional]
14
+
**amendText** | **String** | Custom info during amending order | [optional]
Copy file name to clipboardExpand all lines: docs/BatchFuturesOrder.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
14
14
**user** | **Integer** | User ID | [optional][readonly]
15
15
**createTime** | **Double** | Creation time of order | [optional][readonly]
16
16
**finishTime** | **Double** | Order finished time. Not returned if order is open | [optional][readonly]
17
-
**finishAs** | [**FinishAsEnum**](#FinishAsEnum) | How the order was finished. - filled: all filled - cancelled: manually cancelled - liquidated: cancelled because of liquidation - ioc: time in force is `IOC`, finish immediately - auto_deleveraged: finished by ADL - reduce_only: cancelled because of increasing position while `reduce-only` set- position_closed: cancelled because of position close - stp: cancelled because self trade prevention | [optional][readonly]
17
+
**finishAs** | [**FinishAsEnum**](#FinishAsEnum) | How the order was finished. - filled: all filled - cancelled: manually cancelled - liquidated: cancelled because of liquidation - ioc: time in force is `IOC`, finish immediately - auto_deleveraged: finished by ADL - reduce_only: cancelled because of increasing position while `reduce-only` set- position_closed: cancelled because of position close - position_closed: canceled because the position was closed - reduce_out: only reduce positions by excluding hard-to-fill orders - stp: cancelled because self trade prevention | [optional][readonly]
18
18
**status** | [**StatusEnum**](#StatusEnum) | Order status - `open`: waiting to be traded - `finished`: finished | [optional][readonly]
**amendText** | **String** | The custom data that the user remarked when amending the order | [optional]
10
12
**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]
11
13
**succeeded** | **Boolean** | Whether the batch of orders succeeded | [optional]
12
14
**label** | **String** | Error label, if any, otherwise an empty string | [optional]
@@ -26,10 +28,12 @@ Name | Type | Description | Notes
26
28
**timeInForce** | [**TimeInForceEnum**](#TimeInForceEnum) | 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]
27
29
**iceberg** | **String** | Amount to display for the iceberg order. Null or 0 for normal orders. Hiding all amount is not supported. | [optional]
28
30
**autoBorrow** | **Boolean** | Used in margin or cross margin trading to allow automatic loan of insufficient amount if balance is not enough. | [optional]
29
-
**autoRepay** | **Boolean** | 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`cannot be both set to true in one order. | [optional]
31
+
**autoRepay** | **Boolean** | 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]
30
32
**left** | **String** | Amount left to fill | [optional][readonly]
33
+
**filledAmount** | **String** | Amount traded to fill | [optional][readonly]
31
34
**fillPrice** | **String** | Total filled in quote currency. Deprecated in favor of `filled_total` | [optional][readonly]
32
35
**filledTotal** | **String** | Total filled in quote currency | [optional][readonly]
36
+
**avgDealPrice** | **String** | Average fill price | [optional][readonly]
0 commit comments