Files
playbook/skills/tsl-api-reference/references/data_dictionary/股票__转融券交易明细.md
T

45 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 天软数据字典 / 股票 / 转融券交易明细
类型:table
## 表信息
| 项目 | 内容 |
| -------- | ------------------------ |
| 表名 | 股票.转融券交易明细 |
| 表 ID | 152 |
| 提取方式 | Infoarray |
| 访问代码 | 股票代码,比如:SH600000 |
| 范围 | stock |
## 字段
| 字段 ID | 字段名 | 类型 | 中文名 | 单位 | 说明 | 对应 API |
| ------- | -------- | ------- | -------- | ---- | ------- | -------- |
| 152001 | 截止日 | Integer | 截止日 | | | |
| 152002 | 期限 | Integer | 期限 | 天 | 【注1】 | |
| 152003 | 费率(%) | Float | 费率(%) | % | 【注2】 | |
| 152004 | 融出数量 | Char | 融出数量 | 股 | | |
## 数据说明
- 该表记录股票的转融券交易明细数据,包括个股各期限的融出数量、费率等数据。自2024年7月11日起,证金公司暂停了转融券相关业务,数据影响参考FAQ:
- Q2024-07-10日证监会暂停转融券业务对数据的影响
-
- 1、数据开始时间:2013-02-28
- 2、数据更新频率:每日,于每日(T日)09:45更新上一交易日(T-1日)的数据。
## 取数示例
范例01:取SH600000浦发银行在2021年7月所有交易日的转融券交易明细
```tsl
// 取SH600000浦发银行在2021年7月所有交易日的转融券交易明细
return select *
from infotable 152
of "SH600000"
where ["截止日"]>=20210701
and ["截止日"]<=20210731
end;
```