♻️ refactor(playbook): streamline agents and refresh tsl docs

This commit is contained in:
csh
2026-01-10 16:55:44 +08:00
parent b529012c59
commit 5822a8736d
88 changed files with 103561 additions and 130104 deletions
@@ -10,40 +10,29 @@
范例
```text
```tsl
// "MA110C2375"在20210322日的开仓手续费额
SetSysParam(PN_Date(),20210322T);
return GetDataByMd("MA110C2375.SP",1);
//结果:0.5
SetSysParam(PN_Date(), 20210322T);
return GetDataByMd("MA110C2375.SP", 1);
// 结果:0.5
```
##### GetDataByMd2
范例
```text
```tsl
// "MA110C2375"在20210322日的开仓手续费额
SetSysParam(PN_Date(),20210322T);
return GetDataByMd2("MA110C2375.SP",1);
//结果:0.5
SetSysParam(PN_Date(), 20210322T);
return GetDataByMd2("MA110C2375.SP", 1);
// 结果:0.5
```
##### StockIndustryLowerArr
范例
```text
```tsl
// 在20201207的申万一级行业列表
return StockIndustryLowerArr("SWHY110000",20201207T);
return StockIndustryLowerArr("SWHY110000", 20201207T);
```