feat(tsl-api-reference): add class and framework API lookup

This commit is contained in:
csh
2026-08-20 13:49:55 +08:00
parent 7233646398
commit 651c1f68d2
637 changed files with 25498 additions and 36673 deletions
@@ -173,19 +173,12 @@ return futuresWarehouseVol("国储天威");
```tsl
// 获取"CF"品种一段时间的仓单日报
SetSysParam(pn_stock(), "CF");
begt := 20140415T;
endt := 20140419T;
Ret := GetFuturesDailyWarehouse(Begt, Endt, t);
If Ret then // 查询成功
Return t;
Else
```
@@ -193,16 +186,10 @@ Else
```tsl
// 获取"CF"品种一段时间的仓单日报
SetSysParam(pn_stock(), "CF");
begt := 20140415T;
endt := 20140419T;
Ret := GetFuturesDailyWarehouse(Begt, Endt, t);
If Ret then // 查询成功
Return "获取数据失败";
```