Skip to main content

Adjust Margin for Isolated Margin Trading Positions

Description

Add or reduce margin for positions in isolated margin mode.

HTTP Request

POST /v3/trade/position/margin

Request Parameters

ParameterRequiredTypeDescription
symbolYesStringA trading pair, consisting of two currencies: base currency and quote currency
amtYesStringMargin amount
typeYesStringADD or REDUCE

Response Parameters

ParameterTypeDescription
symbolStringA trading pair, consisting of two currencies: base currency and quote currency
amtStringMargin amount
typeStringADD or REDUCE
leverStringLeverage of the current position, from 1 to 75

Request Example:

{
"symbol": "DOT_USDT_PERP",
"type": "ADD",
"amt": "50"
}

Response Example

{
"code": 200,
"data": {
"amt": "50",
"lever": "20",
"symbol": "DOT_USDT_PERP",
"type": "ADD"
},
"msg": "Success"
}