fundingRate
Retrieve historical funding rate data for cryptocurrency futures trading on Aster Finance to analyze market trends and inform trading strategies.
Instructions
Get funding rate history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | End time in ms | |
| limit | No | Number of results. Default 100, max 1000. | |
| startTime | No | Start time in ms | |
| symbol | No | Trading symbol |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "End time in ms",
"type": "number"
},
"limit": {
"description": "Number of results. Default 100, max 1000.",
"type": "number"
},
"startTime": {
"description": "Start time in ms",
"type": "number"
},
"symbol": {
"description": "Trading symbol",
"type": "string"
}
},
"type": "object"
}