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/BatchOrder.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,17 @@ Name | Type | Description | Notes
17
17
**side** | **str** | Order side | [optional]
18
18
**amount** | **str** | Trade amount | [optional]
19
19
**price** | **str** | Order price | [optional]
20
-
**time_in_force** | **str** | Time in force | [optional][default to 'gtc']
21
-
**auto_borrow** | **bool** | Used in margin trading(e.g. `account` is `margin`) to allow automatic loan of lacked part if balance is not enough. | [optional]
20
+
**time_in_force** | **str** | Time in force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only - poc: PendingOrCancelled, reduce only | [optional][default to 'gtc']
21
+
**auto_borrow** | **bool** | Used in margin trading(e.g. `account` is `margin`) to allow automatic loan of insufficient part if balance is not enough. | [optional]
22
22
**left** | **str** | Amount left to fill | [optional]
23
23
**fill_price** | **str** | Fill price of the order | [optional]
24
24
**fee** | **str** | Fee deducted | [optional]
25
25
**fee_currency** | **str** | Fee currency unit | [optional]
26
26
**point_fee** | **str** | Point used to deduct fee | [optional]
27
27
**gt_fee** | **str** | GT used to deduct fee | [optional]
28
+
**gt_discount** | **bool** | Whether GT fee discount is used | [optional]
**rebated_fee_currency** | **str** | Rebated fee currency unit | [optional]
28
31
29
32
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**trade_status** | **str** | How currency pair can be traded - untradable: cannot be bought or sold - buyable: can be bought - sellable: can be sold - tradable: can be bought or sold | [optional]
14
15
15
16
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/Order.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,14 +14,17 @@ Name | Type | Description | Notes
14
14
**side** | **str** | Order side |
15
15
**amount** | **str** | Trade amount |
16
16
**price** | **str** | Order price |
17
-
**time_in_force** | **str** | Time in force | [optional][default to 'gtc']
18
-
**auto_borrow** | **bool** | Used in margin trading(e.g. `account` is `margin`) to allow automatic loan of lacked part if balance is not enough. | [optional]
17
+
**time_in_force** | **str** | Time in force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only - poc: PendingOrCancelled, reduce only | [optional][default to 'gtc']
18
+
**auto_borrow** | **bool** | Used in margin trading(e.g. `account` is `margin`) to allow automatic loan of insufficient part if balance is not enough. | [optional]
19
19
**left** | **str** | Amount left to fill | [optional]
20
20
**fill_price** | **str** | Total filled in quote currency | [optional]
21
21
**fee** | **str** | Fee deducted | [optional]
22
22
**fee_currency** | **str** | Fee currency unit | [optional]
23
23
**point_fee** | **str** | Point used to deduct fee | [optional]
24
24
**gt_fee** | **str** | GT used to deduct fee | [optional]
25
+
**gt_discount** | **bool** | Whether GT fee discount is used | [optional]
**rebated_fee_currency** | **str** | Rebated fee currency unit | [optional]
25
28
26
29
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
"""Gets the trade_status of this CurrencyPair. # noqa: E501
277
+
278
+
How currency pair can be traded - untradable: cannot be bought or sold - buyable: can be bought - sellable: can be sold - tradable: can be bought or sold # noqa: E501
279
+
280
+
:return: The trade_status of this CurrencyPair. # noqa: E501
281
+
:rtype: str
282
+
"""
283
+
returnself._trade_status
284
+
285
+
@trade_status.setter
286
+
deftrade_status(self, trade_status):
287
+
"""Sets the trade_status of this CurrencyPair.
288
+
289
+
How currency pair can be traded - untradable: cannot be bought or sold - buyable: can be bought - sellable: can be sold - tradable: can be bought or sold # noqa: E501
290
+
291
+
:param trade_status: The trade_status of this CurrencyPair. # noqa: E501
0 commit comments