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