feat(tsl-api-reference): expand API and module coverage

This commit is contained in:
csh
2026-08-14 17:12:55 +08:00
parent 8f1056130d
commit 3d3036ebe1
571 changed files with 47842 additions and 14458 deletions
@@ -0,0 +1,27 @@
# 金融 / 金融工程 / 股权分置
## `sf_pe(stock_id, end_t, pe, eps, pb)`
声明:function
使用市盈率和市净率方法测算股权分置改革中使股价达到均衡水平的最小送股比例
<!-- tags: 金融 金融工程 股权分置 对价比率 市盈率 市净率 送股比例 PE PB -->
| 参数 | 类型 | 说明 |
| ---------- | ----------- | ------------ |
| `stock_id` | string | 证券代码 |
| `end_t` | t_date_time | 停牌日期 |
| `pe` | real | 合理市盈率 |
| `eps` | real | 预计每股收益 |
| `pb` | real | 合理市净率 |
返回:table_array
### 示例
范例01:测算浙江龙盛股权分置改革的最小送股比例
```tsl
return sf_pe("SH600352", 20120925T, 12, 0.32, 2.5);
```