skills/tushare-data-1.0.5/references/数据接口/股票数据/行情数据/每日涨跌停价格.md
wangyitong a65adcc2e5 Initial commit: merged, deduplicated, and vetted skill collection
Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:

- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
  ../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
  zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
  - docx family: kept docx (official, full toolchain) + docx-cn
    (GB/T 9704 Chinese official-document constants),
    dropped docx_writer (no scripts, name collided with docx)
  - humanizer family: kept humanizer-zh (6 zh reference docs),
    dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
  ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
  claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
  live credentials

Result: 25 skills, 572 files, ~7.5 MB.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-13 14:47:12 +08:00

2.3 KiB
Raw Blame History

每日涨跌停价格


接口stk_limit 描述获取全市场包含A/B股和基金每日涨跌停价格包括涨停价格跌停价格等每个交易日8点40左右更新当日股票涨跌停价格。 限量单次最多提取5800条记录可循环调取总量不限制 积分用户积2000积分可调取单位分钟有流控积分越高流量越大请自行提高积分具体请参阅积分获取办法



输入参数

名称 类型 必选 描述
ts_code str N 股票代码
trade_date str N 交易日期
start_date str N 开始日期
end_date str N 结束日期


输出参数

名称 类型 默认显示 描述
trade_date str Y 交易日期
ts_code str Y TS股票代码
pre_close float N 昨日收盘价
up_limit float Y 涨停价
down_limit float Y 跌停价


接口示例


pro = ts.pro_api()

#获取单日全部股票数据涨跌停价格
df = pro.stk_limit(trade_date='20190625')

#获取单个股票数据
df = pro.stk_limit(ts_code='002149.SZ', start_date='20190115', end_date='20190615')




数据示例

	 trade_date    ts_code  up_limit  down_limit
0      20190625  000001.SZ     15.06       12.32
1      20190625  000002.SZ     30.94       25.32
2      20190625  000004.SZ     25.15       20.57
3      20190625  000005.SZ      3.49        2.85
4      20190625  000006.SZ      6.14        5.02
5      20190625  000007.SZ      7.74        6.34
6      20190625  000008.SZ      4.28        3.50
7      20190625  000009.SZ      6.36        5.20
8      20190625  000010.SZ      3.51        3.17
9      20190625  000011.SZ     10.58        8.66
10     20190625  000012.SZ      5.16        4.22
11     20190625  000014.SZ     10.98        8.98
12     20190625  000016.SZ      4.81        3.93
13     20190625  000017.SZ      5.15        4.21
14     20190625  000018.SZ      1.44        1.30
15     20190625  000019.SZ      8.09        6.62
16     20190625  000020.SZ     12.21        9.99
17     20190625  000021.SZ      9.30        7.61
18     20190625  000023.SZ     14.61       11.95
19     20190625  000025.SZ     23.08       18.88
20     20190625  000026.SZ      8.66        7.08