Modify Risk Limit Level

This interface is for the adjustment of the risk limit level. To adjust the level will cancel the open order, the response can only indicate whether the submit of the adjustment request is successful or not. The result of the adjustment can be achieved by WebSocket information: Position Change Events

HTTP REQUEST

POST /api/v1/position/risk-limit-level/change

Example

POST /api/v1/position/risk-limit-level/change

// request
{
  "symbol": "ADASUDTM", // Contract symbol
  "level": 2 // Level
}
// response
{
  "code": "200000",
  "data": true
}
API KEY PERMISSIONS

This endpoint requires the Futures Trading permission.

REQUEST URL

This endpoint support Futures URL

REQUEST RATE LIMIT

Futures weight:4

PARAMETERS
Param Type Mandatory Description
symbol String Yes Contract symbol
level Integer Yes level
RESPONSES
Param Description
data To adjust the level will cancel the open order, the response can only indicate whether the submit of the adjustment request is successful or not.