get_stock_price_by_date
Retrieve the stock price for a specific symbol on a chosen date using Yahoo Finance data. Input the stock symbol and date in YYYY-MM-DD format for accurate results.
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"
}