1 Star 0 Fork 53

double.li/qmt_trader

forked from 小果量化/qmt_trader 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
订阅全推行情.py 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
小果量化 提交于 2024-06-13 11:39 . 运用
# coding:utf-8
import time
from xtquant import xtdata
code='600031.SH'
#订阅最新行情
def callback_func(data):
print('回调触发')
stock_code=list(data.keys())
df=xtdata.get_full_tick(code_list=stock_code)
print(df)
xtdata.subscribe_quote(stock_code=code,start_time='20240101',end_time='20240525',period='1m')
hist=xtdata.get_market_data(stock_list=[code],start_time='20240101',end_time='20240525',period='1m')
print(hist)
xtdata.subscribe_whole_quote(code_list=[code],callback=callback_func)
#死循环 阻塞主线程退出
xtdata.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/li_dabo/qmt_trader.git
git@gitee.com:li_dabo/qmt_trader.git
li_dabo
qmt_trader
qmt_trader
master

搜索帮助