Skip to main content

Get track list (all active)

Type: POST

Description: /future/trade/v1/entrust/track-list

Limit Flow Rules

200/s/apikey

Parameters

NameTypeMandatoryDefaultDescription
pageintegerfalse1Page
sizeintegerfalse10Quantity of a single page
endTimeintegerfalseN/AEnd time
startTimeintegerfalseN/AStart time
symbolstringfalseN/ASymbol

Example Code

public void getTrackDetail() {
String text = HttpUtil.get(URL + "/data/api/future/trade/v1/entrust/track-list");
System.out.println(text);
}
###Example Code
{
"error": {
"code": "",
"msg": ""
},
"msgInfo": "",
"result": {
"items": [
{
"activationPrice": 0, // Activation price
"avgPrice": 0, // Average price
"callback": "", // Callback range configuration: PROPORTION or FIXED
"callbackVal": 0, // Callback value
"configActivation": false, // Whether to configure activation price
"createdTime": 0, // Create time
"currentPrice": 0, // Real-time price, compared with activation and order price
"desc": "", // Description
"executedQty": 0, // Actual transaction quantity
"orderSide": "", // Order side
"ordinary": true, // Ordinary
"origQty": 0, // Quantity (Cont)
"positionSide": "", // Position side
"price": 0, // Order price
"state": "", // Order state: NOT_ACTIVATION; NOT_TRIGGERED; TRIGGERING; TRIGGERED; USER_REVOCATION; PLATFORM_REVOCATION; EXPIRED; DELEGATION_FAILED
"stopPrice": 0, // Trigger price
"symbol": "", // Symbol
"trackId": 0, // Track id
"triggerPriceType": "", // Trigger price type
"updatedTime": 0 // Update time
}
],
"page": 1, // Page
"ps": 10, // Page size
"total": 20 // Total
},
"returnCode": 0
}