Not getting Order update notifications through websocket.

balboa
hello,
I am trying to get order updates through the KiteTicker api. I am using the setOnOrderUpdateListener() method in KiteTicker to get the order updates. But I am not getting any notifications.

this.tickerProvider = new KiteTicker(kiteConnect.getAccessToken(), kiteConnect.getApiKey());
tickerProvider.setOnOrderUpdateListener(new OnOrderUpdate() {
@Override
public void onOrderUpdate(Order order) {
LOG.info("order update: order id={}, symbol={}, buyORsell={}, qty={}, status={}, msg={}, strategy={} ",order.orderId, order.tradingSymbol,
order.transactionType, order.quantity, order.status, order.statusMessage, order.tag);
}
});


can someone let me know if there is anymore configuration needed?
Sign In or Register to comment.