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,24 @@
# 金融 / 股票 / 综合指标 / PTBR
## `stockPTBR3_ii()`
声明:function
股价有形净值比(最新财务数据),与当前股票pn_stock(),当前时间pn_date()相关
返回:float
### 示例
范例01:SZ300296 利亚德的股价有形净值比(最新财务数据)
```tsl
// SZ300296 利亚德的股价有形净值比(最新财务数据)。
setsysparam(pn_stock(), "SZ300296");
setsysparam(pn_date(), 20181011T);
return StockPTBR3_II();
// 输出:2.85123
```