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>
90 lines
2.8 KiB
Markdown
90 lines
2.8 KiB
Markdown
## 可转债基本信息
|
||
----
|
||
|
||
接口:cb_basic
|
||
描述:获取可转债基本信息
|
||
限量:单次最大2000,总量不限制
|
||
权限:用户需要至少2000积分才可以调取,但有流量控制,5000积分以上频次相对较高,积分越多权限越大,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | 转债代码
|
||
list_date | str | N | 上市日期
|
||
exchange | str | N | 上市地点
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | 转债代码
|
||
bond_full_name | str | Y | 转债名称
|
||
bond_short_name | str | Y | 转债简称
|
||
cb_code | str | Y | 转股申报代码
|
||
stk_code | str | Y | 正股代码
|
||
stk_short_name | str | Y | 正股简称
|
||
maturity | float | Y | 发行期限(年)
|
||
par | float | Y | 面值
|
||
issue_price | float | Y | 发行价格
|
||
issue_size | float | Y | 发行总额(元)
|
||
remain_size | float | Y | 债券余额(元)
|
||
value_date | str | Y | 起息日期
|
||
maturity_date | str | Y | 到期日期
|
||
rate_type | str | Y | 利率类型
|
||
coupon_rate | float | Y | 票面利率(%)
|
||
add_rate | float | Y | 补偿利率(%)
|
||
pay_per_year | int | Y | 年付息次数
|
||
list_date | str | Y | 上市日期
|
||
delist_date | str | Y | 摘牌日
|
||
exchange | str | Y | 上市地点
|
||
conv_start_date | str | Y | 转股起始日
|
||
conv_end_date | str | Y | 转股截止日
|
||
conv_stop_date | str | Y | 停止转股日(提前到期)
|
||
first_conv_price | float | Y | 初始转股价
|
||
conv_price | float | Y | 最新转股价
|
||
rate_clause | str | Y | 利率说明
|
||
put_clause | str | N | 赎回条款
|
||
maturity_put_price | str | N | 到期赎回价格(含税)
|
||
call_clause | str | N | 回售条款
|
||
reset_clause | str | N | 特别向下修正条款
|
||
conv_clause | str | N | 转股条款
|
||
guarantor | str | N | 担保人
|
||
guarantee_type | str | N | 担保方式
|
||
issue_rating | str | N | 发行信用等级
|
||
newest_rating | str | N | 最新信用等级
|
||
rating_comp | str | N | 最新评级机构
|
||
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api(your token)
|
||
#获取可转债基础信息列表
|
||
df = pro.cb_basic(fields="ts_code,bond_short_name,stk_code,stk_short_name,list_date,delist_date")
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
ts_code bond_short_name stk_code stk_short_name list_date delist_date
|
||
0 125002.SZ 万科转债 000002.SZ 万科A 2002-06-28 2004-04-30
|
||
1 125009.SZ 宝安转券 000009.SZ 中国宝安 1993-02-10 1996-01-01
|
||
2 125069.SZ 侨城转债 000069.SZ 华侨城A 2004-01-16 2005-04-29
|
||
3 125301.SZ 丝绸转债 000301.SZ 东方盛虹 1998-09-15 2003-08-28
|
||
4 126301.SZ 丝绸转2 000301.SZ 东方盛虹 2002-09-24 2006-09-18
|