📦 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,26 @@
# 金融 / 期权 / 行权交收信息
## `optionESIExerciseAmount(end_t, datatype)`
声明:function
返回指定日行权数量,与系统参数(证券代码)相关。如果指定日有行权交收信息,返回指定日期认购/认沽行权数量;如果指定日没有行权交收信息,返回0
<!-- tags: 金融 期权 行权交收信息 返回 获取 -->
| 参数 | 类型 | 说明 |
| ---------- | ----------- | --------------------- |
| `end_t` | t_date_time | 日期。截止日期 |
| `datatype` | integer | 用户自定义。取值如下: |
返回:real
### 示例
范例01:调用函数
```tsl
setSysParam(PN_Stock(), 'SH510050');
return optionEsiExerciseAmount(20231227T, 0);
// 输出:20893
```