getCandles
Retrieve historical candlestick (OHLCV) data for cryptocurrency trading pairs on Bitget. Specify symbol, interval, and limit to analyze market trends effectively.
Instructions
Get historical candlestick/OHLCV data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
interval | Yes | Candle interval | |
limit | No | Number of candles (default: 100) | |
symbol | Yes | Trading pair symbol |
Input Schema (JSON Schema)
{
"properties": {
"interval": {
"description": "Candle interval",
"enum": [
"1m",
"5m",
"15m",
"30m",
"1h",
"4h",
"1d"
],
"type": "string"
},
"limit": {
"description": "Number of candles (default: 100)",
"type": "number"
},
"symbol": {
"description": "Trading pair symbol",
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}