setMarginType
Change margin type for cryptocurrency trading positions between isolated and crossed modes to manage risk exposure on Aster Finance exchange.
Instructions
Change margin type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| marginType | Yes | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"marginType": {
"enum": [
"ISOLATED",
"CROSSED"
],
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"marginType"
],
"type": "object"
}