✨ 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:
@@ -0,0 +1,65 @@
|
||||
# 金融报表分析 / 12.期权
|
||||
|
||||
## `option_baseinfo()`
|
||||
|
||||
声明:function
|
||||
|
||||
基本信息
|
||||
|
||||
返回:bool
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:期权基本信息数据
|
||||
|
||||
```tsl
|
||||
// 期权基本信息数据
|
||||
|
||||
return option_baseinfo();
|
||||
```
|
||||
|
||||
## `option_dtList(pz_id, end_t, show_type)`
|
||||
|
||||
声明:function
|
||||
|
||||
期权最活跃和持仓最大标的券合约情况
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ----------- | -------- | ------------------- |
|
||||
| `pz_id` | string | 证券,期权品种 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `show_type` | integer | 用户自定义,显示类型 |
|
||||
|
||||
返回:bool
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:最活跃和持仓最大标的券合约情况数据
|
||||
|
||||
```tsl
|
||||
// 最活跃和持仓最大标的券合约情况数据
|
||||
|
||||
return option_DTList("SH510300", 20251112T, 0);
|
||||
```
|
||||
|
||||
## `option_esInfo(pz_id)`
|
||||
|
||||
声明:function
|
||||
|
||||
行权交收信息
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ------- | ------ | ------------- |
|
||||
| `pz_id` | string | 证券,期权品种 |
|
||||
|
||||
返回:bool
|
||||
|
||||
### 示例
|
||||
|
||||
范例01:行权交收信息数据
|
||||
|
||||
```tsl
|
||||
// 行权交收信息数据
|
||||
|
||||
return option_ESInfo("SH510050");
|
||||
```
|
||||
Reference in New Issue
Block a user