time_series_intraday
Fetch intraday stock market data for financial analysis and trading decisions. Retrieve time series data by symbol and interval to monitor price movements throughout the trading day.
Instructions
Fetch a time series intraday
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| interval | Yes | ||
| adjusted | No | ||
| outputsize | No | ||
| datatype | No | ||
| monthly | No |
Input Schema (JSON Schema)
{
"properties": {
"adjusted": {
"type": "boolean"
},
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"monthly": {
"type": "string"
},
"outputsize": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"interval"
],
"type": "object"
}