龙虎榜每日汇总东方财富
低频获取东方财富龙虎榜每日汇总,金额单位为元。
这个接口只保留已确认字段;金额字段单位为元,遇到源端空结果返回空表。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
trade_date | string | 是 | 交易日期,YYYYMMDD 或 YYYY-MM-DD。 | |
page | integer | 否 | 页码,默认 1。 | 1 |
limit | integer | 否 | 每页条数,默认 50,最大 200。 | 50 |
参数说明
不传 fields 时返回上方全部字段;临时调用只查一次。
参数示例
client.call("eastmoney_dragon_tiger_daily", trade_date="20240102", limit=5)返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
trade_date | date | 交易日期,格式 YYYYMMDD。 |
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 证券简称。 |
reason | string | 上榜原因。 |
close_price | number | 收盘价,单位:元。 |
change_pct | number | 涨跌幅,百分比数值。 |
turnover_rate | number | 换手率,百分比数值。 |
buy_amount | number | 龙虎榜买入额,单位:元。 |
sell_amount | number | 龙虎榜卖出额,单位:元。 |
net_buy_amount | number | 龙虎榜净买入额,单位:元。 |
total_amount | number | 龙虎榜成交额,单位:元。 |
market | string | 交易市场标签。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"eastmoney_dragon_tiger_daily",
limit=5,
trade_date='20240102',
)
HTTP API
POST /v1/request/eastmoney_dragon_tiger_daily
Content-Type: application/json
{
"params": {
"trade_date": "20240102",
"limit": 5
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"trade_date": "20240102",
"limit": 5
}
响应样例
| trade_date | instrument_id | symbol | exchange | name | reason | close_price | change_pct | turnover_rate | buy_amount | sell_amount | net_buy_amount | total_amount | market |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 20240102 | 000595.SZ | 000595 | SZSE | *ST宝实 | 连续三个交易日内,涨幅偏离值累计达到20%的证券 | 5.7 | 10.0386 | 5.0939 | 79387344.0 | 41045941.7 | 38341402.3 | 120433285.7 | 深交所风险警示板 |
生成时间:2026-07-06T16:54:55+00:00