get-historical-analysis
Analyze historical cryptocurrency prices by specifying the symbol, time interval, and duration. Customize the analysis to identify trends and patterns over a selected timeframe.
Instructions
Get historical price analysis with customizable timeframe
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days to analyze (1-30) | |
interval | No | Time interval (m5, m15, m30, h1, h2, h6, h12, d1) | h1 |
symbol | Yes | Cryptocurrency symbol (e.g., BTC, ETH) |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"description": "Number of days to analyze (1-30)",
"type": "number"
},
"interval": {
"default": "h1",
"description": "Time interval (m5, m15, m30, h1, h2, h6, h12, d1)",
"type": "string"
},
"symbol": {
"description": "Cryptocurrency symbol (e.g., BTC, ETH)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}