analytics_fixed_window
Calculate technical indicators for stocks over specified time periods to analyze market trends and perform financial analysis using Alpha Vantage data.
Instructions
Fetch analytics fixed window
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbols | Yes | ||
| interval | Yes | ||
| series_range | Yes | ||
| ohlc | No | ||
| calculations | Yes |
Input Schema (JSON Schema)
{
"properties": {
"calculations": {
"type": "array"
},
"interval": {
"type": "string"
},
"ohlc": {
"type": "string"
},
"series_range": {
"type": "string"
},
"symbols": {
"type": "array"
}
},
"required": [
"symbols",
"series_range",
"interval",
"calculations"
],
"type": "object"
}