It looks like you're new here. If you want to get involved, click one of these buttons!
  Ticker ticker = new Ticker(MyAPIkey, MyAccessToken);
            // Add handlers to events
            ticker.OnTick += onTick;
            ticker.OnOrderUpdate += OnOrderUpdate;
            ticker.OnReconnect += onReconnect;
            ticker.OnNoReconnect += oNoReconnect;
            ticker.OnError += onError;
            ticker.OnClose += onClose;
            ticker.OnConnect += onConnect;
            // Engage reconnection mechanism and connect to ticker
            ticker.EnableReconnect(Interval: 5, Retries: 50);
            ticker.Connect();
            // Subscribing to NIFTY50 and setting mode to LTP
            ticker.Subscribe(Tokens: new UInt32[] { 256265 });
            ticker.SetMode(Tokens: new UInt32[] { 256265 }, Mode: Constants.MODE_LTP);
What is an issue ?                            
This is the log. Thanks for your reply