</>

ETF实时榜单通达信

获取当前 ETF 榜单,可按涨跌幅、成交额等排序。

这个接口是 ETF 榜单,不是完整 ETF 列表。完整目录请用 ETF 列表。

输入参数

参数类型必填说明默认值
sortstring排序字段,默认涨跌幅;常用 change_pct、amount、volume、rise_speed。"change_pct"
startinteger高级分页起点,从 0 开始;一般不用传。0
countinteger返回前多少条,默认 80。80
ascendingboolean是否升序;默认 false,表示按排序字段降序;升序为 true。false
参数示例
# ETF 涨幅榜前 80 条
client.call("etf_realtime_rank_tdx", sort="change_pct", count=80)

# ETF 成交额榜
client.call("etf_realtime_rank_tdx", sort="amount", count=50)

返回字段

字段类型说明
rankinteger榜单名次,从 1 开始,按当前返回结果顺序连续编号。
instrument_idstringAxData 统一指数代码,例如 000001.SH。
symbolstring交易所原始六位指数代码。
tdx_codestringTDX 带市场前缀代码,例如 sh000001。
exchangestringAxData 交易所代码:SSE、SZSE 或 BSE。
last_pricenumber最新点位。
pre_closenumber昨收点位。
opennumber开盘点位。
highnumber最高点位。
lownumber最低点位。
changenumber涨跌点数。
change_pctnumber涨跌幅,百分比数值。
open_change_pctnumber开盘涨幅,百分比数值。
high_change_pctnumber最高涨幅,百分比数值。
low_change_pctnumber最低涨幅,百分比数值。
amplitude_pctnumber振幅,百分比数值。
volumeinteger指数快照携带的成交量。
current_volumeinteger指数快照携带的最近成交量。
amountnumber指数快照携带的成交额,单位:元。
open_amountnumber开盘金额,单位:元。
rise_speednumber涨速,百分比数值。
activityinteger活跃度。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "etf_realtime_rank_tdx",
    count=5,
    sort='change_pct',
)

HTTP API

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

{
  "params": {
    "sort": "change_pct",
    "count": 5
  }
}

真实样例快照

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

请求参数

{
  "sort": "change_pct",
  "count": 5
}

响应样例

rankinstrument_idsymboltdx_codeexchangelast_pricepre_closeopenhighlowchangechange_pctopen_change_pcthigh_change_pctlow_change_pctamplitude_pctvolumecurrent_volumeamountopen_amountrise_speedactivity
1159915.SZ159915sz159915SZSE2.4952.4562.4582.4982.4550.0391.58790.08141.7101-0.04071.7508632145600.0
2510050.SH510050sh510050SSE3.0383.0123.0153.0423.0090.0260.86320.09960.996-0.09961.0956488234240.0

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