Skip to main content

Set Delta Neutral Mode

Delta Neutral Mode is designed to enhance the trading experience for users running delta-neutral strategies. When enabled, positions that meet the Delta Neutral criteria are ranked lower in the ADL (Auto-Deleveraging) queue, reducing the risk of being auto-deleveraged during extreme market conditions. For more details, refer to the Delta Neutral Mode help article.

You can turn on/off the Delta Neutral mode. To query the current status, use the Get Trade Behaviour Config endpoint and check the deltaEnable field in the response.

HTTP Request

POST /v5/account/set-delta-mode

Request Parameters

ParameterRequiredTypeComments
deltaEnabletruestring1: Enable; 0: Disable

Response Parameters

ParameterTypeComments
resultStatusintegersuccess;failed

Request Example

POST /v5/account/set-delta-mode HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1773113846000
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 20

{
"deltaEnable": "1"
}

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {},
"retExtInfo": {},
"time": 1773113846355
}