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,22 @@
# 金融 / 财务分析 / 最近一季度
## `epsBeforeIssue_declare()`
声明:function
提取股票的每股收益(发行前一年度),与系统股票pn_stock()、当前时间pn_date()相关
返回:float
### 示例
范例01:计算SH600000发行前一年度的每股收益
```tsl
// 计算SH600000发行前一年度的每股收益
setsysparam(pn_stock(), 'SH600000');
return EPSBeforeIssue_Declare();
// 输出:0.43
```