yahoo_finance_search
Retrieve stock data and financial insights from Yahoo Finance using a specific symbol and time period. Integrates with Agentic AI to provide accurate, context-aware responses for market analysis.
Instructions
Get stock information from Yahoo Finance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | 1mo | |
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"default": "1mo",
"title": "Period",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "yahoo_finance_searchArguments",
"type": "object"
}