After Reconnect OnTick Event not fired

vijayjpkite
Sometimes the kite api reconnects. OnReconnect evetn is fired. After that OnTick Event is never fired. So the application is not receiving any tick data. It is keep on running without any other action. I am just logging the message on each event. Please find the code and screenshot of the console output here.



private void OnReconnect()
{
_logger.Info("Reconnecting......");
}
private void OnConnect()
{
_logger.Info("Connected ticker.");
}

private void OnClose()
{
_logger.Info("Closed ticker");
}
Sign In or Register to comment.