交易所指数当日权重


接口:index_weight_close
描述:
限量:单次最大50000

输入参数

名称 类型 必选 描述
date str N 当日权重日期 YYYY-MM-DD
code str N 指数代码 不需加后缀,例如399975

输出参数

名称 类型 默认显示 描述
date None Y ....
code str Y ....
index_name_cn str Y ........
index_name_en str Y .......
constituent_code str Y .....
constituent_name_cn str Y .........
constituent_name_en str Y .........
exchange str Y ...
close float Y ...
total_shares None Y ...
shares_in_index None Y .....
total_market_cap float Y ...
market_cap_in_index float Y .....
index_currency str Y ....
constituent_currency str Y .....
exchange_rate float Y ..
weight float Y ..
cni_industry str Y ......
cap_factor float Y ....

示例

安装Python包

pip install dcube

导入datacube

import dcube as dc

用token初始化pro接口

pro = dc.pro_api('your token')

数据调取

df = pro.query('index_weight_close', code='399975', fields='code,date,index_name_cn,index_name_en')

或者

df = pro.index_weight_close(code='399975')
置顶