analyze_fng_trend
Evaluate Crypto Fear & Greed Index trends over specified days, providing insights on latest value, average, trend direction, and analyzed data points for informed decision-making.
Instructions
Analyze trends in Crypto Fear & Greed Index over specified days.
Parameters: days (int): Number of days to analyze (must be a positive integer).
Returns: str: A string containing the analysis results, including latest value, average value, trend direction, and number of data points analyzed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | Yes |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"title": "Days",
"type": "integer"
}
},
"required": [
"days"
],
"title": "analyze_fng_trendArguments",
"type": "object"
}