get_stock_grades_historical
Retrieve historical analyst ratings for stocks using the Yahoo Finance MCP Server. Provide a ticker symbol and limit to access detailed grading data for informed investment decisions.
Instructions
获取分析师评级历史记录。
参数说明: ticker: str 股票代码,例如 "AAPL" limit: int 返回记录数量,最大 1000,默认 100
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_stock_grades_historicalArguments",
"type": "object"
}