# 金融 / 期权 / 活跃成交持仓 / 中间函数 ## `optionUBCQK(option_id, end_t, otype, data_type, top_n)` 声明:function 最活跃和持仓最大标的券合约情况 | 参数 | 类型 | 说明 | | ----------- | ----------- | -------------------------------- | | `option_id` | string | 字符串。期权代码 | | `end_t` | t_date_time | 日期。截止日期 | | `otype` | integer | 整数。期权类型(0:认沽,1:认购) | | `data_type` | integer | 整数。数据类型(0:交易,1:持仓) | | `top_n` | integer | 整数。前N | 返回:array ### 示例 范例01:调用 OptionUBCQK ```tsl return OptionUBCQK("SH510050", 20200807T, 0, 0, 3); ```