feat(tsl-api-reference): expand and reorganize api catalog

Flatten builtin pages, add third-party and platform scopes, and import financial and data warehouse references.

Keep the existing generated index without rebuilding after signature normalization.
This commit is contained in:
csh
2026-08-10 18:26:24 +08:00
parent 2938300acb
commit 9010829c6d
1186 changed files with 243901 additions and 219769 deletions
@@ -0,0 +1,28 @@
# 金融 / 基金 / 募集总额
## `fundTotalAmountOfRaised(begt, endt, s_type)`
声明:function
指定区间基金募集总额
| 参数 | 类型 | 说明 |
| -------- | ----------- | ------------------- |
| `begt` | t_date_time | 日期,开始日期 |
| `endt` | t_date_time | 日期,截止日期 |
| `s_type` | integer | 用户自定义,投资风格 |
返回:real
### 示例
范例01:调用函数
```tsl
// 获取2025年1月1日到9月1日,混合型基金的募集总额
begt := 20250101T;
endt := 20250901T;
stype := 1; // 混合型
return fundTotalAmountOfRaised(begt, endt, s_type);
// 输出:75331843259.29
```