AKShare-债券数据-新综合指数
数据科学实战
共 2331字,需浏览 5分钟
·
2023-09-25 17:33
作者寄语
本次更新债券数据-新综合指数接口。目前该接口可以获取中债指数-中债指数族系-总指数-综合类指数-中债-新综合指数的数据。
相关视频教程已经发布:《AKShare-初阶-使用教学》、《AKShare-初阶-实战应用》、《AKShare-源码解析》、《开源项目巡礼》,课程介绍及订阅请点击 【阅读原文】!
AKShare VIP 交流群欢迎您的加入,可以在公众号回复
加群
获取加群方式!
更新接口
-
"bond_new_composite_index_cbond" # 新综合指数
新综合指数
接口: bond_new_composite_index_cbond
目标地址: https://yield.chinabond.com.cn/cbweb-mn/indices/single_index_query
描述: 中国债券信息网-中债指数-中债指数族系-总指数-综合类指数-中债-新综合指数
输入参数
名称 | 类型 | 描述 |
---|---|---|
indicator | str | indicator="财富"; choice of {"全价", "净价", "财富", "平均市值法久期", "平均现金流法久期", "平均市值法凸性", "平均现金流法凸性", "平均现金流法到期收益率", "平均市值法到期收益率", "平均基点价值", "平均待偿期", "平均派息率", "指数上日总市值", "财富指数涨跌幅", "全价指数涨跌幅", "净价指数涨跌幅", "现券结算量"} |
period | str | period="总值"; choice of {"总值", "1年以下", "1-3年", "3-5年", "5-7年", "7-10年", "10年以上", "0-3个月", "3-6个月", "6-9个月", "9-12个月", "0-6个月", "6-12个月"} |
输出参数
名称 | 类型 | 描述 |
---|---|---|
date | object | - |
value | float64 | 注意单位 |
接口示例
import akshare as ak
bond_new_composite_index_cbond_df = ak.bond_new_composite_index_cbond(indicator="财富", period="总值")
print(bond_new_composite_index_cbond_df)
数据示例
date value
0 2002-01-03 99.9731
1 2002-01-06 100.0149
2 2002-01-07 99.8273
3 2002-01-08 100.0203
4 2002-01-09 99.9317
... ...
5428 2023-09-10 226.6884
5429 2023-09-11 226.7591
5430 2023-09-12 226.8514
5431 2023-09-13 226.9510
5432 2023-09-14 226.8926
[5433 rows x 2 columns]
评论