国金证券QMT测试客户端 - 获取可融券股票数据

已邀请:

李魔佛 - 公众号:可转债量化分析 【论坛注册:公众号后台留言邮箱】

赞同来自:

# coding:gbk
CREDIT_ACCOUNT = '可转债量化分析'

def show_data(data):
tdata = {}
for ar in dir(data):
if ar[:2] != 'm_': continue
try:
tdata[ar] = data.__getattribute__(ar)
except:
tdata[ar] = '<CanNotConvert>'
return tdata


def handlebar(ContextInfo):
obj = get_enable_short_contract(CREDIT_ACCOUNT)
for i in obj[:3]:
print(show_data(i))




 
运行得到结果:
{'m_eQuerySloType': 48, 'm_nEnableAmount': 100000000, 'm_nPlatformID': 10125, 'm_strAccountID': '155418220', 'm_strBrokerID': '105210', 'm_strBrokerName': '国金证券T2股票', 'm_strExchangeID': 'SZ', 'm_strInstrumentID': '300003'}
{'m_eQuerySloType': 48, 'm_nEnableAmount': 100000000, 'm_nPlatformID': 10125, 'm_strAccountID': '155418220', 'm_strBrokerID': '105210', 'm_strBrokerName': '国金证券T2股票', 'm_strExchangeID': 'SZ', 'm_strInstrumentID': '002756'}

似乎可以测试的券并不多。

要回复问题请先登录注册