get_candle_snapshot
Retrieve candlestick data for a specific token on Hyperliquid exchange by specifying the token symbol, time interval, and start time. Analyze historical market trends and price movements.
Instructions
Get candlestick data for a token on Hyperliquid
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin | Yes | The symbol of the token to get candlestick data for | |
endTime | No | End time in milliseconds since epoch (optional) | |
interval | Yes | Time interval (e.g., '15m', '1h') | |
startTime | Yes | Start time in milliseconds since epoch |
Input Schema (JSON Schema)
{
"properties": {
"coin": {
"description": "The symbol of the token to get candlestick data for",
"type": "string"
},
"endTime": {
"description": "End time in milliseconds since epoch (optional)",
"type": "number"
},
"interval": {
"description": "Time interval (e.g., '15m', '1h')",
"type": "string"
},
"startTime": {
"description": "Start time in milliseconds since epoch",
"type": "number"
}
},
"required": [
"coin",
"interval",
"startTime"
],
"type": "object"
}