修改strategyKingKeltner中5分钟K线的合成逻辑

This commit is contained in:
vn.py 2017-07-25 10:30:19 +08:00
parent c129342169
commit b574af80f1

View File

@ -137,8 +137,8 @@ class KkStrategy(CtaTemplate):
#----------------------------------------------------------------------
def onBar(self, bar):
"""收到Bar推送必须由用户继承实现"""
# 如果当前是一个5分钟走完
if bar.datetime.minute % 5 == 0:
# 如果当前是一个5分钟走完(分钟线的时间戳是当前分钟的开始时间戳,因此要+1
if (bar.datetime.minute + 1) % 5 == 0:
# 如果已经有聚合5分钟K线
if self.fiveBar:
# 将最新分钟的数据更新到目前5分钟线中