This commit is contained in:
vn.py 2018-09-06 14:23:33 +08:00
parent d5f09bdf33
commit 904895899a

View File

@ -364,6 +364,7 @@ class WebsocketApi(BitmexWebsocketApi):
tick.date = date.replace('-', '')
tick.time = time.replace('Z', '')
tick = copy(tick)
self.gateway.onTick(tick)
#----------------------------------------------------------------------
@ -388,6 +389,7 @@ class WebsocketApi(BitmexWebsocketApi):
tick.date = date.replace('-', '')
tick.time = time.replace('Z', '')
tick = copy(tick)
self.gateway.onTick(tick)
#----------------------------------------------------------------------