# 金融 / 股票 / 转融通证券出借交易 / 中间函数 ## `stockGetRefinancingLendData(stock_id, beg_t, end_t, limite, dtype)` 声明:function 获取指定区间指定期限转融通证券出借交易数据 | 参数 | 类型 | 说明 | | ---------- | -------- | ------------------------------- | | `stock_id` | string | 字符串。证券代码 | | `beg_t` | datetime | 日期。开始时间 | | `end_t` | datetime | 日期。截止时间 | | `limite` | int | 整数。期限 | | `dtype` | int | 用户自定义。数据类型,取值如下: | 返回:array ### 示例 范例01:"SH600837"在20220801-20220811期限为14天的出借数量 ```tsl // "SH600837"在20220801-20220811期限为14天的出借数量 return StockGetRefinancingLendData("SH600837", 20220801T, 20220811T, 14); ```