📦 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,74 @@
# 金融 / 基金 / 基本信息 / 中间函数
## `fundGetAttributeValues(fundid, endt, attributetype)`
声明:function
返回基金指定日期有效的的基金属性值数据
<!-- tags: 金融 基金 基本信息 中间函数 返回 获取 -->
| 参数 | 类型 | 说明 |
| --------------- | -------- | ---------------- |
| `fundid` | string | 字符串。基金代码 |
| `endt` | datetime | 日期。截止日期 |
| `attributetype` | string | 字符串。属性名称 |
返回:array
### 示例
范例01:调用 FundGetAttributeValues
```tsl
return FundGetAttributeValues('OF000001', 20210302T);
```
## `fundOperateFundsbyBkname(bk_name, end_t)`
声明:function
返回指定日指定板块中还在运作的基金
<!-- tags: 金融 基金 基本信息 中间函数 返回 获取 -->
| 参数 | 类型 | 说明 |
| --------- | ----------- | ---------------- |
| `bk_name` | string | 字符串。板块名称 |
| `end_t` | t_date_time | 日期。截止日期 |
返回:array
### 示例
范例01:调用函数
```tsl
// 20200924日指定日指定板块中还在运作的基金列表
return fundOperateFundsbyBkname("封闭;退市封闭", 20200924T);
```
## `fundsOperateFunds(funds, end_t)`
声明:function
返回指定日指定列表中还在运作的基金
<!-- tags: 金融 基金 基本信息 中间函数 返回 获取 -->
| 参数 | 类型 | 说明 |
| ------- | -------- | -------------- |
| `funds` | array | 数组。基金列表 |
| `end_t` | datetime | 日期。截止日期 |
返回:array
### 示例
范例01:20200924日指定日指定板块中还在运作的基金列表
```tsl
// 20200924日指定日指定板块中还在运作的基金列表
return FundsOperateFunds(getbk("封闭;退市封闭"), 20200924T);
```