接口:sf_convert
描述:获取中国分级基金折算
限量:单次最大10000
数据更新频率:日
数据更新时间:00:00;04:00;20:00
输入参数
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
code | str | N | 基金代码(样例格式‘161207.OF’) |
输出参数
名称 | 类型 | 默认显示 | 描述 |
---|---|---|---|
code | str | Y | 基金代码 |
convert_reason | float | Y | 折算原因代码 |
period | float | Y | 折算周期(年) |
convert_dt | str | Y | 折算基准日 |
nav_typecode | float | Y | 基金净值类型代码 |
nav_min | float | Y | 基金净值下限(元) |
nav_max | float | Y | 基金净值上限(元) |
convert_typecode | float | Y | 折算方式代码 |
convert_fund_typecode | float | Y | 折算母基金份额的方式代码 |
convert_feeder_typecode | float | Y | 折算子基金份额的方式代码 |
表信息
表中文名 | 表名 | 说明 |
---|---|---|
中国分级基金折算 | SCFConvert | 记录分级基金的折算信息 |
安装Python包
pip install dcube
导入datacube
import dcube as dc
用token初始化pro接口
pro = dc.pro_api('your token')
数据调取
df = pro.query('sf_convert', code='161207.OF', fields='code,convert_reason,period,convert_dt,nav_typecode')
或者
df = pro.sf_convert(code='161207.OF')