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>
87 lines
3.0 KiB
Markdown
87 lines
3.0 KiB
Markdown
## 开盘啦榜单数据
|
||
----
|
||
|
||
接口:kpl_list
|
||
描述:获取开盘啦涨停、跌停、炸板等榜单数据
|
||
限量:单次最大8000条数据,可根据日期循环获取历史数据
|
||
积分:5000积分每分钟可以请求200次每天总量1万次,8000积分以上每分钟500次每天总量不限制,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
注:开盘啦是一个优秀的专业打板app,有兴趣的用户可以自行下载安装。本接口仅限用于量化研究,如需商业用途,请自行联系开盘APP官方。数据更新时间次日8:30
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | 股票代码
|
||
trade_date | str | N | 交易日期
|
||
tag | str | N | 板单类型(涨停/炸板/跌停/自然涨停/竞价,默认为涨停)
|
||
start_date | str | N | 开始日期
|
||
end_date | str | N | 结束日期
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | 代码
|
||
name | str | Y | 名称
|
||
trade_date | str | Y | 交易时间
|
||
lu_time | str | Y | 涨停时间
|
||
ld_time | str | Y | 跌停时间
|
||
open_time | str | Y | 开板时间
|
||
last_time | str | Y | 最后涨停时间
|
||
lu_desc | str | Y | 涨停原因
|
||
tag | str | Y | 标签|类别
|
||
theme | str | Y | 板块
|
||
net_change | float | Y | 主力净额(元)
|
||
bid_amount | float | Y | 竞价成交额(元)
|
||
status | str | Y | 状态(N连板)
|
||
bid_change | float | Y | 竞价净额
|
||
bid_turnover | float | Y | 竞价换手%
|
||
lu_bid_vol | float | Y | 涨停委买额
|
||
pct_chg | float | Y | 涨跌幅%
|
||
bid_pct_chg | float | Y | 竞价涨幅%
|
||
rt_pct_chg | float | Y | 实时涨幅%
|
||
limit_order | float | Y | 封单
|
||
amount | float | Y | 成交额
|
||
turnover_rate | float | Y | 换手率%
|
||
free_float | float | Y | 实际流通
|
||
lu_limit_order | float | Y | 最大封单
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口用法**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.kpl_list(trade_date='20240927', tag='涨停', fields='ts_code,name,trade_date,tag,theme,status')
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**数据样例**
|
||
|
||
ts_code name trade_date tag theme status
|
||
0 000762.SZ 西藏矿业 20240927 涨停 锂矿、盐湖提锂 首板
|
||
1 300399.SZ 天利科技 20240927 涨停 互联网金融、金融概念 首板
|
||
2 002673.SZ 西部证券 20240927 涨停 证券、控参股基金 首板
|
||
3 002050.SZ 三花智控 20240927 涨停 汽车热管理、比亚迪产业链 首板
|
||
4 600801.SH 华新水泥 20240927 涨停 水泥、地产链 首板
|
||
.. ... ... ... .. ... ...
|
||
126 600696.SH 岩石股份 20240927 涨停 白酒、酿酒 2连板
|
||
127 600606.SH 绿地控股 20240927 涨停 房地产、地产链 2连板
|
||
128 000882.SZ 华联股份 20240927 涨停 零售、互联网金融 2连板
|
||
129 000069.SZ 华侨城A 20240927 涨停 房地产、地产链 2连板
|
||
130 002570.SZ 贝因美 20240927 涨停 多胎概念、乳业 首板
|