@@ -0,0 +1,350 @@
|
||||
# 指数 / 董监高持股变动
|
||||
|
||||
## `indexDssoIncreaseComList(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人增持的股票列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:array
|
||||
|
||||
## `indexDssoIncreaseComListQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人增持的股票列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:array
|
||||
|
||||
## `indexDssoIncreaseComNum(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人增持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoIncreaseComNumQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人增持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoIncreasePercent(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人增持占总市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoIncreasePercent2(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人增持占流通市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoIncreasePercentQj2(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人增持占流通市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoIncreaseValue(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人增持市值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoIncreaseValueQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人增持市值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoNetChangeComList(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人净增持的股票列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:array
|
||||
|
||||
## `indexDssoNetChangeComListQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人净增持的股票列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:array
|
||||
|
||||
## `indexDssoNetChangeComNum(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人净增持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoNetChangeComNumQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人净增持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoNetChangePercent(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人净增持占总市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoNetChangePercent2(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人净增持占流通市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoNetChangePercentQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人净增持占总市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoNetChangeValue(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人净增持市值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoNetChangeValueQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人净增持市值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoReduceComList(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人减持的股票列表
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:array
|
||||
|
||||
## `indexDssoReduceComNum(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日发生董监高及关联人减持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoReduceComNumQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人减持的股票个数
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:int
|
||||
|
||||
## `indexDssoReducePercent(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人减持占总市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoReducePercent2(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人减持占流通市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoReducePercentQj(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人减持占总市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoReducePercentQj2(index_id, beg_t, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股区间董监高及关联人减持占流通市值(%)
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `beg_t` | datetime | 日期,开始日期 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
|
||||
## `indexDssoReduceValue(index_id, end_t, vtype, rtype)`
|
||||
|
||||
获得指数成份股指定日董监高及关联人减持市值
|
||||
|
||||
| 参数 | 类型 | 说明 |
|
||||
| ---------- | -------- | --------------------------- |
|
||||
| `index_id` | string | 指数,指数代码 |
|
||||
| `end_t` | datetime | 日期,截止日期 |
|
||||
| `vtype` | int | 用户自定义,变动原因 |
|
||||
| `rtype` | int | 用户自定义,与关联董监高关系 |
|
||||
|
||||
返回:float
|
||||
Reference in New Issue
Block a user