Financial Modeling Prep
getIntradayChart
Access precise intraday stock price and volume data with the FMP Interval Stock Chart API. Retrieve real-time or historical stock data in intervals, including key information such as open, high, low, and close prices, and trading volume for each minute.
Remote cfocoder/financial-modeling-prep-mcp-server
Other tools also called getIntradayChart?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"to": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"from": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"symbol": {
"type": "string",
"description": "Stock symbol"
},
"interval": {
"enum": [
"1min",
"5min",
"15min",
"30min",
"1hour",
"4hour"
],
"type": "string",
"description": "Time interval"
}
}
}