get_historical_fng_tool
Retrieve historical Crypto Fear & Greed Index values for a specified number of days to analyze market sentiment trends and make informed investment decisions.
Instructions
Get historical Fear & Greed Index for specified number of days as a tool.
Parameters: days (int): Number of days to retrieve (must be a positive integer).
Returns: str: Historical Fear & Greed Index values for the specified period.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | Yes |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"title": "Days",
"type": "integer"
}
},
"required": [
"days"
],
"title": "get_historical_fng_toolArguments",
"type": "object"
}