get_ticker_news
Retrieve news articles for a specific stock ticker symbol to stay informed about market updates and company developments.
Instructions
Fetches news articles for a given stock ticker symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | The stock symbol |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "The stock symbol",
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_ticker_newsArguments",
"type": "object"
}