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,87 @@
# 金融报表分析 / 14.期货
## `future_baseinfo()`
声明:function
基本信息
返回:bool
### 示例
范例01:期货基本信息数据
```tsl
// 期货基本信息数据
return future_baseinfo();
```
## `future_dtList(end_t)`
声明:function
结算会员成交持仓排名
| 参数 | 类型 | 说明 |
| ------- | -------- | ------------- |
| `end_t` | datetime | 日期,截止日期 |
返回:bool
### 示例
范例01:al2601结算会员成交持仓排名数据
```tsl
// al2601结算会员成交持仓排名数据
setsysparam(pn_stock(), "al2601");
return future_DTList(20251113T);
```
## `future_tbfDeliverableBonds()`
声明:function
国债期货可交割债券种
返回:bool
### 示例
范例01:TF2309国债期货可交割债券数据
```tsl
// TF2309国债期货可交割债券数据
setsysparam(pn_stock(), "TF2309");
return future_TBFDeliverableBonds();
```
## `future_warehouseDaily(pz_id, beg_t, end_t)`
声明:function
期货仓单日报,适用于大商所、上期所、郑商所、广期所的期货品种
| 参数 | 类型 | 说明 |
| ------- | -------- | ------------- |
| `pz_id` | string | 证券,品种代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
返回:bool
### 示例
范例01al期货仓单日报数据
```tsl
// al期货仓单日报数据
return future_WarehouseDaily("al", 20251101T, 20251113T);
```