get_stock_grade_news
Retrieve stock rating news for a specific ticker using customizable pagination. Access detailed financial insights directly from Yahoo Finance. Ideal for tracking market analyst updates efficiently.
Instructions
获取指定股票的评级新闻。
参数说明: ticker: str 股票代码,例如 "AAPL" page: int 页码,默认 0 limit: int 每页数量,最大 100,默认 1
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
page | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1,
"title": "Limit",
"type": "integer"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_stock_grade_newsArguments",
"type": "object"
}