get_stock_price_date_range
Retrieve historical stock prices for a specific symbol within a defined date range using YYYY-MM-DD format, enabling detailed financial analysis.
Instructions
Get the stock prices for a given date range for a given stock symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | The end date in YYYY-MM-DD format. | |
start_date | Yes | The start date in YYYY-MM-DD format. | |
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "The end date in YYYY-MM-DD format.",
"type": "string"
},
"start_date": {
"description": "The start date in YYYY-MM-DD format.",
"type": "string"
},
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol",
"start_date",
"end_date"
],
"type": "object"
}