get_stock_price_by_date
Retrieve the historical stock price for a specific symbol on a given date using YYYY-MM-DD format. Ideal for analyzing past market performance and financial research.
Instructions
Get the stock price for a given stock symbol on a specific date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | The date in YYYY-MM-DD format. | |
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "The date in YYYY-MM-DD format.",
"type": "string"
},
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol",
"date"
],
"type": "object"
}