get_news
Fetch news articles for any stock symbol using Yahoo Finance data. Retrieve relevant updates to stay informed on market trends and company developments.
Instructions
Get news for a given stock symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol in Yahoo Finance format. |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Stock symbol in Yahoo Finance format.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}