Unable to get values of Scripts which include '&' symbol.. also tried URL Masking '%26' but still not able to get data: USING CODE Dictionary ltps = kite.GetLTP(InstrumentId: new string[] { THE_EXCHANGE_NAME + ":" + THE_SCRIPT_NAME }); LBL6 = ltps[THE_EXCHANGE_NAME + ":" + THE_SCRIPT_NAME].LastPrice.ToString();
Are you forming instrument name custom string at your end? Make sure, there is no spaces in between.It should be
['NSE:M&M']
You need to write something like
['NSE:M&M','BSE:SBIN','NSE:ONGC']
.