研报情感总分表


接口:getResearchReportInfo
描述:描述公司研报的基础信息,如标题、券商、分析师、股票代码、评级等,以及研报的总情感得分。
限量:单次最大10000
数据更新频率:日
数据更新时间:不定时

已入库数据时间

开始时间 结束时间
2006-01-15 上个交易日

输入参数

名称 类型 必选 描述
report_id str N 研报ID
title str N 标题
code str N 股票代码
publish_date str N 研报撰写日期

输出参数

名称 类型 默认显示 描述
id None Y ID
report_id None Y 研报ID
title str Y 标题
org_name str Y 券商
author str Y 分析师
code str Y 股票代码
company_name str Y 公司名称
publish_date None Y 研报撰写日期
report_type str Y 研报类型
report_sub_type str Y 研报细分类型
target_price str Y 目标价
target_price_exdate int Y 目标价有效期(月)
rating_content str Y 评级
rating_change str Y 评级变动
source str Y 数据来源
industry_id None Y 行业ID
industry_name str Y 一级行业名称
industry_l2 str Y 二级行业名称
industry_l3 str Y 三级行业名称
rpt_insert_time str Y 研报发布日期
sentiment_score float Y 研报情感分数
update_time str Y 更新时间

表信息

表中文名 表名 说明
研报情感总分表 research_report_info 描述公司研报的基础信息

示例

安装Python包

pip install dcube

导入datacube

import dcube as dc

用token初始化pro接口

pro = dc.pro_api('your token')

数据调取

df = pro.query('getResearchReportInfo', code='600050',publish_date='2020-02-14', fields='report_id,title,author')

或者

df = pro.getResearchReportInfo(code='600050',publish_date='2020-02-14')
置顶