昨日涨停今日表现东方财富
临时获取东方财富昨日涨停今日表现数据,默认不入库。
请求东方财富昨日涨停今日表现,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
trade_date | string | 否 | 交易日期,YYYYMMDD 或 YYYY-MM-DD,默认今天。 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
trade_date | date | 交易日期,格式 YYYYMMDD。 |
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 证券简称。 |
market_code | string | 东方财富市场代码。 |
last_price | number | 最新价,单位:元。 |
limit_price | number | 涨停/跌停价,单位:元。 |
change_pct | number | 涨跌幅,百分比数值。 |
amount | number | 成交额,单位:元。 |
float_market_value | number | 流通市值,单位:元。 |
turnover_rate | number | 换手率,百分比数值。 |
first_limit_time | string | 首次涨停时间。 |
last_limit_time | string | 最后涨停/跌停时间。 |
continuous_count | integer | 连板/连续跌停次数。 |
open_times | integer | 炸板/开板次数。 |
main_inflow | number | 主力净流入,单位:元。 |
sector | string | 所属行业/板块。 |
amplitude | number | 振幅,百分比数值。 |
open_ratio | number | 高开比,百分比数值。 |
yesterday_limit_time | string | 昨日涨停时间。 |
yesterday_continuous_count | integer | 昨日连板数。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"eastmoney_yesterday_limit_up_pool",
trade_date='20260703',
)
HTTP API
POST /v1/request/eastmoney_yesterday_limit_up_pool
Content-Type: application/json
{
"params": {
"trade_date": "20260703"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"trade_date": "20260703"
}
响应样例
| trade_date | instrument_id | open_ratio |
|---|---|---|
| 20260703 | 002798.SZ | 1.4285714626312256 |
生成时间:2026-07-06T16:54:55+00:00