getIndex5MinuteData
Access precise 5-minute intraday price data for stock indexes to analyze short-term price movements and trading volume. Ideal for traders needing detailed market insights within compact time frames.
Instructions
Retrieve 5-minute interval intraday price data for stock indexes using the Intraday 5-Minute Price Data API. This API provides crucial insights into price movements and trading volume within 5-minute windows, ideal for traders who require short-term data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date (YYYY-MM-DD) | |
symbol | Yes | Index symbol (e.g., ^GSPC for S&P 500) | |
to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"symbol": {
"description": "Index symbol (e.g., ^GSPC for S&P 500)",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}