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