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>
1.3 KiB
1.3 KiB
A股实时分钟
接口:rt_min 描述:获取全A股票实时分钟数据,包括1~60min 限量:单次最大1000行数据,可以通过股票代码提取数据,支持逗号分隔的多个代码同时提取 权限:正式权限请参阅 权限说明
注:支持股票当日开盘以来的所有历史分钟数据提取,接口名:rt_min_daily(仅支持一个个股票提取,不同同时提取多个)
输入参数
| 名称 | 类型 | 必选 | 描述 |
|---|---|---|---|
| freq | str | Y | 1MIN,5MIN,15MIN,30MIN,60MIN (大写) |
| ts_code | str | Y | 支持单个和多个:600000.SH 或者 600000.SH,000001.SZ |
freq参数说明
| freq | 说明 |
|---|---|
| 1MIN | 1分钟 |
| 5MIN | 5分钟 |
| 15MIN | 15分钟 |
| 30MIN | 30分钟 |
| 60MIN | 60分钟 |
输出参数
| 名称 | 类型 | 默认显示 | 描述 |
|---|---|---|---|
| ts_code | str | Y | 股票代码 |
| time | None | Y | 交易时间 |
| open | float | Y | 开盘价 |
| close | float | Y | 收盘价 |
| high | float | Y | 最高价 |
| low | float | Y | 最低价 |
| vol | float | Y | 成交量(股) |
| amount | float | Y | 成交额(元) |
接口用法
pro = ts.pro_api()
#获取浦发银行60000.SH的实时分钟数据
df = pro.rt_min(ts_code='600000.SH', freq='1MIN')