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>
67 lines
1.9 KiB
Markdown
67 lines
1.9 KiB
Markdown
## 转融券交易汇总
|
||
----
|
||
|
||
接口:slb_sec
|
||
描述:转融通转融券交易汇总
|
||
限量:单次最大可以提取5000行数据,可循环获取所有历史
|
||
积分:2000积分每分钟请求200次,5000积分500次请求
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
trade_date | str | N | 交易日期(YYYYMMDD格式,下同)
|
||
ts_code | str | N | 股票代码
|
||
start_date | str | N | 开始日期
|
||
end_date | str | N | 结束日期
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
trade_date | str | Y | 交易日期(YYYYMMDD)
|
||
ts_code | str | Y | 股票代码
|
||
name | str | Y | 股票名称
|
||
ope_inv | float | Y | 期初余量(万股)
|
||
lent_qnt | float | Y | 转融券融出数量(万股)
|
||
cls_inv | float | Y | 期末余量(万股)
|
||
end_bal | float | Y | 期末余额(万元)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.slb_sec(trade_date='20240620')
|
||
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
trade_date ts_code name ope_inv lent_qnt cls_inv end_bal
|
||
0 20240620 000001.SZ 平安银行 186.97 1.43 188.40 2004.70
|
||
1 20240620 000002.SZ 万科A 3456.26 3.18 3376.80 24346.73
|
||
2 20240620 000006.SZ 深振业A 17.08 None 17.08 64.56
|
||
3 20240620 000008.SZ 神州高铁 17.07 None 17.07 33.97
|
||
4 20240620 000009.SZ 中国宝安 315.61 0.66 310.56 2822.99
|
||
... ... ... ... ... ... ... ...
|
||
2249 20240620 688798.SH XD艾为电 65.35 1.32 63.40 3727.91
|
||
2250 20240620 688800.SH 瑞可达 6.49 None 6.36 191.18
|
||
2251 20240620 688819.SH 天能股份 108.34 1.05 108.44 2717.34
|
||
2252 20240620 688981.SH 中芯国际 303.00 22.45 315.30 15386.64
|
||
2253 20240620 689009.SH 九号公司 259.35 5.72 253.62 10583.56 |