# 金融 / 股票 / 转融通证券出借交易 ## `stock_refinancingLendVol(limite)` 声明:function 返回指定日指定期限的出借数量,与系统参数(证券代码,时间)相关 | 参数 | 类型 | 说明 | | -------- | ------- | --------- | | `limite` | integer | 整型,期限 | 返回:float ### 示例 范例01:"SH600837"在20220811期限为14天的出借数量 ```tsl // "SH600837"在20220811期限为14天的出借数量 SetSysParam(pn_stock(), "SH600837"); SetSysParam(PN_Date(), 20220811T); return Stock_RefinancingLendVol(14); // 输出:10000 ``` ## `stock_refinancingLendVolQJ(begt, endt, limite)` 声明:function 返回区间指定期限的出借数量,与系统参数(证券代码)相关 | 参数 | 类型 | 说明 | | -------- | -------- | ------------- | | `begt` | datetime | 日期,开始时间 | | `endt` | datetime | 日期,截止时间 | | `limite` | integer | 整型,期限 | 返回:float ### 示例 范例01:"SH600837"在20220801-20220811期限为14天的出借数量 ```tsl // "SH600837"在20220801-20220811期限为14天的出借数量 SetSysParam(pn_stock(), "SH600837"); return Stock_RefinancingLendVolQJ(20220801T, 20220811T, 14); // 输出:20000 ```