get_candle_snapshot
Retrieve historical candle data for cryptocurrency trading analysis on Hyperliquid DEX. Specify coin symbol and time interval to access market price history for informed decision-making.
Instructions
Get historical candle data for a specific coin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin | Yes | The coin symbol (e.g., BTC, ETH, SOL) | |
endTime | No | End time in milliseconds (optional) | |
interval | Yes | Candle interval | |
startTime | No | Start time in milliseconds (optional) |
Input Schema (JSON Schema)
{
"properties": {
"coin": {
"description": "The coin symbol (e.g., BTC, ETH, SOL)",
"type": "string"
},
"endTime": {
"description": "End time in milliseconds (optional)",
"type": "number"
},
"interval": {
"description": "Candle interval",
"enum": [
"1m",
"5m",
"15m",
"1h",
"4h",
"1d",
"1w",
"1M"
],
"type": "string"
},
"startTime": {
"description": "Start time in milliseconds (optional)",
"type": "number"
}
},
"required": [
"coin",
"interval"
],
"type": "object"
}