接口:mf_transformation
描述:记录基金的转型信息
限量:单次最大10000
数据更新频率:日
数据更新时间:9:00
输入参数
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
pre_code | str | N | 转型前基金Wind代码 |
post_code | str | N | 转型后基金Wind代码 |
输出参数
名称 | 类型 | 默认显示 | 描述 |
---|---|---|---|
pre_code | str | Y | 转型前基金Wind代码 |
post_code | str | Y | 转型后基金Wind代码 |
pre_name | str | Y | 转型前基金简称 |
f_info_prefullname | str | Y | 转型前基金全称 |
pre_code | str | Y | 转型前基金代码 |
post_name | str | Y | 转型后基金简称 |
f_info_postfullname | str | Y | 转型后基金全称 |
post_code | str | Y | 转型后基金代码 |
f_info_postislist | float | Y | 基金封转开后是否上市 |
f_info_ctosuspenddate | str | Y | 封转开停牌起始日期 |
f_info_meetinganndate | str | Y | 基金转型会议召开公告日期 |
f_info_meetingdate | str | Y | 基金转型会议日期 |
f_info_approvalrate | float | Y | 基金转型赞成率(%) |
f_info_resumpdate | str | Y | 封转开复牌日期 |
f_info_cfundredemcode | str | Y | 原封闭式基金持有人赎回代码 |
f_info_cfundenddate | str | Y | 封闭式基金终止上市日期 |
f_info_cfundendanndate | str | Y | 封闭式基金终止上市公告日期 |
f_info_tanstype | str | Y | 转型类别 |
f_unit_pch | float | Y | 集中申购份额 |
f_unit_splitshare | float | Y | 转型拆分份额 |
f_infotanstypecode | float | Y | 转型类别代码 |
f_fund_transformation_date | str | Y | 基金转型生效日期 |
表信息
表中文名 | 表名 | 说明 |
---|---|---|
中国共同基金转型 | ChinaMutualFundTransformation | 记录基金的转型信息 |
安装Python包
pip install dcube
导入datacube
import dcube as dc
用token初始化pro接口
pro = dc.pro_api('your token')
数据调取
df = pro.query('mf_transformation', code='160617.SZ', fields='pre_code,post_code,pre_name,f_info_prefullname,post_name')
或者
df = pro.mf_transformation(code='160617.SZ')