各位大佬, 请教一个问题, 若果依赖期货的日线进行分析下单,该如何使用BarGenerator呢?
https://www.vnpy.com/forum/topic/7589-veighnaliang-hua-ce-lue-shi-yan-shi-rsjgao-pin-bo-dong-lu-ze-shi-zhi-biao-3-xin-hao-zu-he 这个里面写了一个DailyBarGenerator, 源码里面时这样来判断是否一个日线已经结束的
# Check if window bar completed
if (
self.last_bar
and self.last_bar.datetime.date() != bar.datetime.date()
):
self.on_daily_bar(self.daily_bar)
self.daily_bar = None
想请教下, 对于有夜盘的品种, 譬如周一晚上9点半的tick数据此时里面的bar.datetime已经是第二天的日期了吗?
谢谢