📦 deps(tsl): sync tsl-playbook from a71480a4

Source-Commit: a71480a4ae
This commit is contained in:
ci[bot]
2026-08-12 08:38:08 +08:00
parent 683f83d17c
commit 670ba950a6
1496 changed files with 292667 additions and 220122 deletions
@@ -0,0 +1,32 @@
# 金融 / 股票 / 综合指标 / PEG
## `stockPeG_iii(end_t, n, data_type)`
声明:function
返回指定日PEG(最近12个月加权),与当前股票pn_stock(),当前时间pn_date()相关
<!-- tags: 金融 股票 综合指标 PEG 返回 获取 -->
| 参数 | 类型 | 说明 |
| ----------- | -------- | ---------------------------- |
| `end_t` | datetime | 日期类型,截止日期; |
| `n` | integer | 用户自定义类型,增长率标准; |
| `data_type` | integer | 整数类型,类型; |
返回:float
### 示例
范例01:SZ300296 利亚德以前年为增长率标准,2018年8月22日的PEG(最近12个月加权)
```tsl
// SZ300296 利亚德以前年为增长率标准,2018年8月22日的PEG(最近12个月加权)。
setsysparam(pn_stock(), "SZ300296");
setsysparam(pn_date(), 20181011T);
return StockPEG_III(20180822T, 2, 0);
// 输出:9.52957
```