get_analyst_estimates
Retrieve analyst financial estimates for stocks by providing the symbol, period, page, and limit parameters. Access detailed forecasts for informed investment decisions.
Instructions
获取分析师的财务预估数据。
参数说明: symbol: str 股票代码,例如 "AAPL" period: str annual 或 quarter,默认 annual page: int 页码,默认 0 limit: int 返回数量,默认 10
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
page | No | ||
period | No | annual | |
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
},
"period": {
"default": "annual",
"title": "Period",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_analyst_estimatesArguments",
"type": "object"
}