get_crypto_prices
Retrieve historical cryptocurrency price data by specifying ticker, date range, and interval. Use this tool to analyze crypto market trends and performance over time.
Instructions
Gets historical prices for a crypto currency.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
interval | No | day | |
interval_multiplier | No | ||
start_date | Yes | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"interval": {
"default": "day",
"title": "Interval",
"type": "string"
},
"interval_multiplier": {
"default": 1,
"title": "Interval Multiplier",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker",
"start_date",
"end_date"
],
"title": "get_crypto_pricesArguments",
"type": "object"
}