get_ticker_news
Retrieve recent news articles for a specific stock symbol, including title, content, and source details, to stay informed about market developments.
Instructions
Fetches recent news articles related to a specific stock symbol with title, content, and source details.
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"
}