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>
51 lines
1.5 KiB
Markdown
51 lines
1.5 KiB
Markdown
## 可转债转股价变动
|
||
----
|
||
|
||
接口:cb_price_chg
|
||
描述:获取可转债转股价变动
|
||
限量:单次最大2000,总量不限制
|
||
权限:本接口需单独开权限(跟积分没关系),具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=290)
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | Y | 转债代码,支持多值输入
|
||
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | 转债代码
|
||
bond_short_name | str | Y | 转债简称
|
||
publish_date | str | Y | 公告日期
|
||
change_date | str | Y | 变动日期
|
||
convert_price_initial | float | Y | 初始转股价格
|
||
convertprice_bef | float | Y | 修正前转股价格
|
||
convertprice_aft | float | Y | 修正后转股价格
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api(your token)
|
||
#获取可转债转股价变动
|
||
df = pro.cb_price_chg(ts_code="113556.SH,128114.SZ,128110.SZ",fields="ts_code,bond_short_name,change_date,convert_price_initial,convertprice_bef,convertprice_aft")
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
ts_code bond_short_name change_date convert_price_initial convertprice_bef convertprice_aft
|
||
0 113556.SH 至纯转债 20191220 29.4700 None None
|
||
1 113556.SH 至纯转债 20200629 29.4700 29.4700 29.3800
|
||
2 128110.SZ 永兴转债 20200609 17.1600 None None
|
||
3 128114.SZ 正邦转债 20200617 16.0900 None None |