getPositionMarginHistory
Retrieve historical margin adjustments for cryptocurrency futures positions on Aster Finance, tracking changes over specified time periods to monitor position management activity.
Instructions
Get position margin change history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | ||
| limit | No | ||
| startTime | No | ||
| symbol | Yes | ||
| type | No |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"type": "number"
},
"limit": {
"type": "number"
},
"startTime": {
"type": "number"
},
"symbol": {
"type": "string"
},
"type": {
"enum": [
1,
2
],
"type": "number"
}
},
"required": [
"symbol"
],
"type": "object"
}