📦 deps(tsl): sync tsl-playbook from a71480a4

Source-Commit: a71480a4ae
This commit is contained in:
ci[bot]
2026-08-12 08:38:08 +08:00
parent 683f83d17c
commit 670ba950a6
1496 changed files with 292667 additions and 220122 deletions
@@ -0,0 +1,47 @@
# 金融 / 股票 / 资产负债
## `gWtoNetAssetsRatio(report_date)`
声明:function
返回商誉占净资产比例(%),与系统参数(证券代码)相关
<!-- tags: 金融 股票 资产负债 返回 获取 -->
| 参数 | 类型 | 说明 |
| ------------- | ---- | ------------ |
| `report_date` | int | 整数。报告期 |
返回:float
### 示例
范例01:调用函数
```tsl
SetSysParam(pn_stock(), "SH600000");
return GWtoNetAssetsRatio(20221231);
```
## `netAssetsCutGW(report_date)`
声明:function
返回净资产(扣除商誉),与系统参数(证券代码)相关
<!-- tags: 金融 股票 资产负债 返回 获取 -->
| 参数 | 类型 | 说明 |
| ------------- | ---- | ------------ |
| `report_date` | int | 整数。报告期 |
返回:float
### 示例
范例01:调用函数
```tsl
SetSysParam(pn_stock(), "SH600000");
return NetAssetsCutGW(20221231);
```