get_news_sentiment
Analyze sentiment of news articles for a specific stock ticker to gain insights into market perception and trends. Retrieve relevant news data from Yahoo Finance to inform investment decisions.
Instructions
获取指定股票的相关新闻列表。
参数说明: ticker: str 股票代码,例如 "AAPL"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_news_sentimentArguments",
"type": "object"
}