# 金融 / 股票 / 股东增减持 / 中间函数 ## `stockHoldersIncreaseAndReduceDataQJ(stock_id, beg_t, end_t, vtype, dtype, ctype, holder_name)` 声明:function 获取指定区间大股东不同变动类型下的增减持数量、市值、比率 | 参数 | 类型 | 说明 | | ------------- | -------- | ------------------- | | `stock_id` | string | 证券,证券代码 | | `beg_t` | datetime | 日期,开始日期 | | `end_t` | datetime | 日期,截止日期 | | `vtype` | int | 用户自定义,变动原因 | | `dtype` | int | 用户自定义,数据类型 | | `ctype` | int | 用户自定义,计算方式 | | `holder_name` | string | 字符串, | 返回:float ### 示例 范例01:"SZ000001"在20090527全部大股东增持数量 ```tsl // "SZ000001"在20090527全部大股东增持数量 return StockHoldersIncreaseAndReduceDataQJ("SZ000001", 20090527T, 20090527T, 0, 0, 0); // 输出:1579045 ```