get_price_target_info
Retrieve analyst price target details, including summaries, consensus views, or related news for a specific stock symbol. Customize results by selecting page and limit for precise data retrieval.
Instructions
获取分析师目标价相关信息,可选择汇总、共识或新闻。
参数说明: info_type: str summary、consensus、news、latest_news symbol: str 股票代码,news/summary/consensus 必填 page: int 页码,默认 0 limit: int 返回数量,默认 10
Input Schema
Name | Required | Description | Default |
---|---|---|---|
info_type | Yes | ||
limit | No | ||
page | No | ||
symbol | No |
Input Schema (JSON Schema)
{
"properties": {
"info_type": {
"title": "Info Type",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
},
"symbol": {
"default": "",
"title": "Symbol",
"type": "string"
}
},
"required": [
"info_type"
],
"title": "get_price_target_infoArguments",
"type": "object"
}