@rakeshr no what I was thinking is that when all retries are exhausted it does not crash the whole node service and there can be a callback where I can decide what to do next like I can notify on slack that ticker is failing after all retries. Also,…
@SRIJAN Thanks for the quick response .
So for example below logic will work
const ticker = new KiteTicker({
api_key,
access_token,
});
ticker.connect();
ticker.on('order_update', (odr) => {
/**
* This will recieve all order update of…