Skip to main content

Change position mode

Switches a market's position mode between ONE_WAY (net position) and HEDGE (independent long and short positions).

Request Parameters​

NameTypeRequiredDescription
symbolStringYesMarket symbol to configure (e.g. BTC-PERP).
positionModeStringYesTarget position mode: ONE_WAY (net position) or HEDGE (independent long and short positions).

Response Content​

NameTypeDescription
symbolStringMarket symbol that was updated (e.g. BTC-PERP).
timestampLongServer timestamp of the response, in milliseconds since epoch.
statusIntegerStatus code of the position-mode change.
typeIntegerEvent type code of the response.
example
POSThttps://api.btse.com/futures/api/v3/trade/position_mode

Request (default)

{
"symbol": "BTC-PERP",
"positionMode": "ONE_WAY"
}

Response (default)

{
"symbol": "BTC-PERP",
"timestamp": 1784882344272,
"status": 134,
"type": 129
}