中国A股盈利预测明细


接口:ashare_earning_est
描述:记录研究机构的研究员对A股的盈利预测数据
限量:单次最大500000
数据更新频率:日
数据更新时间:08:00;09:00;10:00;12:00;15:00;17:00;18:00;19:00

输入参数

名称 类型 必选 描述
code str N 指标代码(样例格式600585.SH)
est_dt str N 预测日期
start_date str N 开始日期
end_date str N 结束日期

输出参数

名称 类型 默认显示 描述
s_info_windcode str Y
wind_code str Y
research_inst_name str Y
analyst_name str Y
est_dt str Y
reporting_period str Y
est_eps_diluted float Y
est_net_profit float Y
est_main_bus_inc float Y
est_ebit float Y
est_ebitda float Y
est_base_cap float Y
ann_dt str Y
s_est_cps float Y
s_est_dps float Y
s_est_bps float Y
s_est_ebt float Y
s_est_roa float Y
s_est_roe float Y
s_est_oprofit float Y
s_est_epsdiluted float Y
s_est_epsbasic float Y
s_est_oc float Y
s_est_npcal float Y
s_est_epscal float Y
s_est_nprate float Y
s_est_epsrate float Y
s_est_pe float Y
s_est_pb float Y
s_est_evebitda float Y
s_est_dividendyield float Y
s_est_enddate str Y
s_est_ope float Y
analyst_id str Y
collect_time datetime Y
first_optime datetime Y
report_typecode float Y
report_name str Y
report_summary None Y
est_base_cap_dif_code float Y
s_est_value_calculation float Y

表信息

表中文名 表名 说明
中国A股盈利预测明细 AShareEarningEst 记录研究机构的研究员对A股的盈利预测数据

示例

安装Python包

pip install dcube

导入datacube

import dcube as dc

用token初始化pro接口

pro = dc.pro_api('your token')

数据调取

df = pro.query('ashare_earning_est', est_dt='20220727', fields='s_info_windcode,est_dt,est_net_profit,s_est_bps')

或者

df = pro.ashare_earning_est(est_dt='20220727')
置顶