get_stock_grades
Retrieve the latest analyst ratings for a specific stock using its ticker symbol, such as "AAPL", to inform investment decisions with expert insights.
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_stock_gradesArguments",
"type": "object"
}