BaseGateway的on_tick函数如下:
def on_tick(self, tick: TickData) -> None:
"""
Tick event push.
Tick event of a specific vt_symbol is also pushed.
"""
self.on_event(EVENT_TICK, tick)
self.on_event(EVENT_TICK + tick.vt_symbol, tick)
为什么推送了EVENT_TICK,还要推送EVENT_TICK + tick.vt_symbol?CtaEngine中的process_tick_event好像只能处理EVENT_TICK?请问哪个函数如何处理EVENT_TICK + tick.vt_symbol?