📝 docs(tsl): add generated codegen reference

This commit is contained in:
csh
2026-07-07 16:34:27 +08:00
parent 014c23d386
commit 7046f0b60e
632 changed files with 160584 additions and 0 deletions
@@ -0,0 +1,378 @@
# 金融函数 - 指数 / 股东增减持
## 函数
### `indexHoldersIncreaseValue(index_id, end_t, vtype)`
获得指数成分股指定日大股东增持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReducePercent2(index_id, end_t, vtype)`
获得指数成分股指定日大股东减持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersNetChangeValue(index_id, end_t, vtype)`
获得指数成分股指定日大股东净增持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreasePercent2(index_id, end_t, vtype)`
获得指数成分股指定日大股东增持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReduceValue(index_id, end_t, vtype)`
获得指数成分股指定日大股东减持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReducePercent(index_id, end_t, vtype)`
获得指数成分股指定日大股东减持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersNetChangePercent(index_id, end_t, vtype)`
获得指数成分股指定日大股东净增持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreaseComNum(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东增持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersReduceComNum(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东减持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersNetChangeComNum(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东净增持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersIncreaseComList(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东增持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersReduceComList(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东减持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersNetChangeComList(index_id, end_t, vtype)`
获得指数成分股指定日发生大股东净增持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersIncreaseValueQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东增持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReduceValueQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东减持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersNetChangeValueQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东净增持市值
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreasePercentQj2(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东增持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReducePercentQj2(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东减持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersNetChangePercentQj2(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东净增持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreasePercentQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东增持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersReducePercentQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东减持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersNetChangePercentQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间大股东净增持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreaseComNumQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东增持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersReduceComNumQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东减持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersNetChangeComNumQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东净增持的股票个数
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:any
### `indexHoldersIncreaseComListQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东增持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersReduceComListQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东减持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersNetChangeComListQj(index_id, beg_t, end_t, vtype)`
获得指数成分股区间发生大股东净增持的股票列表
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `beg_t` | datetime | 日期,开始日期 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:array
### `indexHoldersNetChangePercent2(index_id, end_t, vtype)`
获得指数成分股指定日大股东净增持占流通市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float
### `indexHoldersIncreasePercent(index_id, end_t, vtype)`
获得指数成分股指定日大股东增持占总市值(%)
| 参数 | 类型 | 说明 |
| ---------- | -------- | ------------------- |
| `index_id` | string | 指数,指数代码 |
| `end_t` | datetime | 日期,截止日期 |
| `vtype` | any | 用户自定义,变动原因 |
返回:float