analyze_fng_trend
Analyze CNN Fear & Greed Index trends over specified days to determine the latest value, average, trend direction, and data points for informed financial decision-making.
Instructions
Analyze trends in CNN Fear & Greed Index over specified days.
Parameters:
days (int): Number of days to analyze (limited by available data).
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"
}