Financial Modeling Prep
getHistoricalIndexLightChart
Retrieve end-of-day historical prices for stock indexes using the Historical Price Data API. This API provides essential data such as date, price, and volume, enabling detailed analysis of price movements over time.
Remote cfocoder/financial-modeling-prep-mcp-server
Other tools also called getHistoricalIndexLightChart?
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": "Index symbol (e.g., ^GSPC for S&P 500)"
}
}
}