✨ feat(tsl-api-reference): expand API and module coverage
This commit is contained in:
@@ -52,6 +52,46 @@ return bd_CouponRate();
|
||||
|
||||
返回:string
|
||||
|
||||
## `bd_datedDate()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回系统参数指定债券的计息日
|
||||
|
||||
<!-- tags: 金融 债券 基本情况 计息日 起息日 dated date -->
|
||||
|
||||
返回:integer
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:查询指定债券的计息日
|
||||
|
||||
```tsl
|
||||
setSysParam(pn_stock(), "BK000201");
|
||||
return bd_datedDate();
|
||||
// 输出:20000404
|
||||
```
|
||||
|
||||
## `bd_expireDate()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回系统参数指定债券的摘牌日
|
||||
|
||||
<!-- tags: 金融 债券 基本情况 摘牌日 到期日 expire date delisting -->
|
||||
|
||||
返回:integer
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:查询指定债券的摘牌日
|
||||
|
||||
```tsl
|
||||
setSysParam(pn_stock(), "BK000201");
|
||||
return bd_expireDate();
|
||||
// 输出:20100404
|
||||
```
|
||||
|
||||
## `bd_faceValue()`
|
||||
|
||||
声明:function
|
||||
@@ -62,6 +102,26 @@ return bd_CouponRate();
|
||||
|
||||
返回:integer
|
||||
|
||||
## `bd_goalDate()`
|
||||
|
||||
声明:function
|
||||
|
||||
返回系统参数指定债券的到期日
|
||||
|
||||
<!-- tags: 金融 债券 基本情况 到期日 maturity goal date -->
|
||||
|
||||
返回:integer
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:查询指定债券的到期日
|
||||
|
||||
```tsl
|
||||
setSysParam(pn_stock(), "BK000201");
|
||||
return bd_goalDate();
|
||||
// 输出:20100404
|
||||
```
|
||||
|
||||
## `bd_interestRateType()`
|
||||
|
||||
声明:function
|
||||
|
||||
Reference in New Issue
Block a user