indexPriceKlines
Retrieve candlestick chart data for cryptocurrency index prices to analyze market trends and price movements over specified time periods.
Instructions
Kline/candlestick bars for the index price of a pair.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | End time in ms | |
| interval | Yes | Kline interval | |
| limit | No | Number of results. Default 500, max 1500. | |
| pair | Yes | Trading pair, e.g., BTCUSDT | |
| startTime | No | Start time in ms |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "End time in ms",
"type": "number"
},
"interval": {
"description": "Kline interval",
"type": "string"
},
"limit": {
"description": "Number of results. Default 500, max 1500.",
"type": "number"
},
"pair": {
"description": "Trading pair, e.g., BTCUSDT",
"type": "string"
},
"startTime": {
"description": "Start time in ms",
"type": "number"
}
},
"required": [
"pair",
"interval"
],
"type": "object"
}