指数调样事件¶
本页定义目标 API,实际数据查询服务尚未实现。示例仅用于表达请求和响应格式。
数据产品标识:index.rebalance_events
证券对象标识示例:000001.SZ
接口名称¶
获取指数调样事件
接口说明¶
指数成分调整及生效日期。
请求参数¶
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
index_code |
string |
否 | 筛选一个或多个指数代码。 |
market |
string |
否 | 市场代码;中文客户端默认 CN。 |
start_date |
date |
否 | 查询开始日期,包含该日。 |
end_date |
date |
否 | 查询结束日期,包含该日。 |
返回字段¶
| 字段名 | 中文名称 | 类型 | 是否可空 | 字段说明 |
|---|---|---|---|---|
index_code |
指数代码 | string |
否 | 调样对应的指数代码。 |
announcement_date |
公告日期 | date |
是 | 调样方案公告日期。 |
effective_date |
生效日期 | date |
否 | 新成分和权重生效日期。 |
constituent_code |
成分证券代码 | string |
否 | 加入或移除的成分证券代码。 |
action |
调整动作 | string |
否 | 加入、移除或权重调整。 |
previous_weight |
调整前权重 | decimal |
是 | 调整前的指数权重。 |
new_weight |
调整后权重 | decimal |
是 | 调整后的指数权重。 |
字段补充属性¶
| 字段名 | 属性 |
|---|---|
previous_weight |
精度:38;小数位数:18 |
new_weight |
精度:38;小数位数:18 |
请求示例¶
{
"dataset_id": "index.rebalance_events",
"select": [
"index_code",
"announcement_date",
"effective_date",
"constituent_code",
"action",
"previous_weight",
"new_weight"
],
"where": [
{
"field": "index_code",
"op": "eq",
"value": "000300.SH"
},
{
"field": "market",
"op": "eq",
"value": "CN"
},
{
"field": "effective_date",
"op": "gte",
"value": "2026-01-01"
},
{
"field": "effective_date",
"op": "lte",
"value": "2026-08-10"
}
],
"page": {
"limit": 1000,
"cursor": null
}
}
响应示例¶
{
"dataset_id": "index.rebalance_events",
"fields": [
"index_code",
"announcement_date",
"effective_date",
"constituent_code",
"action",
"previous_weight",
"new_weight"
],
"data": [
{
"index_code": "000300.SH",
"announcement_date": "2026-08-01",
"effective_date": "2026-08-10",
"constituent_code": "string",
"action": "string",
"previous_weight": "0.00",
"new_weight": "0.00"
}
],
"page": {
"next_cursor": null,
"complete": true
}
}