盈利预测通达信
查询盈利预测统计,包括未来三年预测、历史实际值和预测机构数量。
查询盈利预测统计,包括未来三年预测、历史实际值和预测机构数量。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。 |
参数示例
# 单个标的
client.call("stock_forecast_consensus_tdx", code="000001.SZ")
# 批量请求多个标的
client.call("stock_forecast_consensus_tdx", code=["000034.SZ", "000001.SZ"])返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
forecast_start_year | integer | 预测起始年份。 |
align_flag | string | 年份对齐标记。 |
eps_year1 | number | 未来第一年预测每股收益。 |
eps_year2 | number | 未来第二年预测每股收益。 |
eps_year3 | number | 未来第三年预测每股收益。 |
net_profit_year1 | number | 未来第一年预测归母净利润。 |
net_profit_year2 | number | 未来第二年预测归母净利润。 |
net_profit_year3 | number | 未来第三年预测归母净利润。 |
revenue_year1 | number | 未来第一年预测营业收入。 |
revenue_year2 | number | 未来第二年预测营业收入。 |
revenue_year3 | number | 未来第三年预测营业收入。 |
forecast_institution_count | integer | 预测机构数量。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_forecast_consensus_tdx",
code='000001.SZ',
)
HTTP API
POST /v1/request/stock_forecast_consensus_tdx
Content-Type: application/json
{
"params": {
"code": "000001.SZ"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ"
}
响应样例
| instrument_id | symbol |
|---|---|
| 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00