get_historical_prices
Retrieve historical stock price data for companies on the Spanish stock exchange to analyze market trends and performance over time.
Instructions
Get historical price data for a company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | Company ID | |
days | No | Number of days of historical data |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "Company ID",
"type": "string"
},
"days": {
"default": 30,
"description": "Number of days of historical data",
"type": "number"
}
},
"required": [
"companyId"
],
"type": "object"
}