</>

指数调入调出通达信

查询股票被指数调入或调出的历史记录。

查询股票被指数调入或调出的历史记录。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
start_datestring起始日期,可选;不传返回全部记录。
end_datestring结束日期,可选;不传返回全部记录。
参数示例
# 单个标的
client.call("stock_index_constituent_changes_tdx", code="000034.SZ")

# 批量请求多个标的
client.call("stock_index_constituent_changes_tdx", code=["000034.SZ", "000001.SZ"])

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
publish_datedate指数调整公布日期。
change_directionstring指数调入/调出方向。
index_namestring指数名称。
publish_date_change_pctnumber公布日涨跌幅,单位:%。
effective_datedate指数调整日期。
effective_date_change_pctnumber调整日涨跌幅,单位:%。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_index_constituent_changes_tdx",
    code='000001.SZ',
)

HTTP API

POST /v1/request/stock_index_constituent_changes_tdx
Content-Type: application/json

{
  "params": {
    "code": "000001.SZ"
  }
}

真实样例快照

展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。

请求参数

{
  "code": "000001.SZ"
}

响应样例

publish_datechange_directionindex_namepublish_date_change_pcteffective_dateeffective_date_change_pctinstrument_idsymbol
20241129调入中证5001.949610120241216-1.9343494000001.SZ000001

生成时间:2026-07-06T16:54:55+00:00