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
limit =100# int | Maximum number of record returned in one list (optional) (default to 100)
989
-
last_id ='12345'# str | Specify list staring point using the last record of `id` in previous list-query results (optional)
989
+
last_id ='12345'# str | Specify list staring point using the `id` of last record in previous list-query results (optional)
990
990
991
991
try:
992
992
# List futures orders
@@ -1004,7 +1004,7 @@ Name | Type | Description | Notes
1004
1004
**contract** | **str**| Futures contract |
1005
1005
**status** | **str**| List orders based on status |
1006
1006
**limit** | **int**| Maximum number of record returned in one list | [optional][default to 100]
1007
-
**last_id** | **str**| Specify list staring point using the last record of `id` in previous list-query results | [optional]
1007
+
**last_id** | **str**| Specify list staring point using the `id` of last record in previous list-query results | [optional]
1008
1008
1009
1009
### Return type
1010
1010
@@ -1069,7 +1069,7 @@ No authorization required
1069
1069
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
settle ='btc'# str | Settle currency (default to 'btc')
1086
1086
contract ='BTC_USD'# str | Futures contract
1087
1087
limit =100# int | Maximum number of record returned in one list (optional) (default to 100)
1088
-
last_id ='12345'# str | Specify list staring point using the last record of `id` in previous list-query results (optional)
1088
+
last_id ='12345'# str | Specify list staring point using the id of last record in previous list-query results This parameter is deprecated. Use `from` and `to` instead to limit time range (optional)
1089
+
_from =1546905600# float | Specify starting time in Unix seconds. If not specified, `to` and `limit` will be used to limit response items. If items between `from` and `to` are more than `limit`, only `limit` number will be returned. (optional)
1090
+
to =1546935600# float | Specify end time in Unix seconds, default to current time (optional)
print("Exception when calling FuturesApi->list_futures_trades: %s\n"% e)
@@ -1102,7 +1104,9 @@ Name | Type | Description | Notes
1102
1104
**settle** | **str**| Settle currency | [default to 'btc']
1103
1105
**contract** | **str**| Futures contract |
1104
1106
**limit** | **int**| Maximum number of record returned in one list | [optional][default to 100]
1105
-
**last_id** | **str**| Specify list staring point using the last record of `id` in previous list-query results | [optional]
1107
+
**last_id** | **str**| Specify list staring point using the id of last record in previous list-query results This parameter is deprecated. Use `from` and `to` instead to limit time range | [optional]
1108
+
**_from** | **float**| Specify starting time in Unix seconds. If not specified, `to` and `limit` will be used to limit response items. If items between `from` and `to` are more than `limit`, only `limit` number will be returned. | [optional]
1109
+
**to** | **float**| Specify end time in Unix seconds, default to current time | [optional]
:param int limit: Maximum number of record returned in one list
2173
-
:param str last_id: Specify list staring point using the last record of `id` in previous list-query results
2173
+
:param str last_id: Specify list staring point using the id of last record in previous list-query results This parameter is deprecated. Use `from` and `to` instead to limit time range
2174
+
:param float _from: Specify starting time in Unix seconds. If not specified, `to` and `limit` will be used to limit response items. If items between `from` and `to` are more than `limit`, only `limit` number will be returned.
2175
+
:param float to: Specify end time in Unix seconds, default to current time
:param int limit: Maximum number of record returned in one list
2197
-
:param str last_id: Specify list staring point using the last record of `id` in previous list-query results
2199
+
:param str last_id: Specify list staring point using the id of last record in previous list-query results This parameter is deprecated. Use `from` and `to` instead to limit time range
2200
+
:param float _from: Specify starting time in Unix seconds. If not specified, `to` and `limit` will be used to limit response items. If items between `from` and `to` are more than `limit`, only `limit` number will be returned.
2201
+
:param float to: Specify end time in Unix seconds, default to current time
0 commit comments