in your code above you are getting exactly what you asked for in the loop. Item is a key in the dictionary and that is what is getting printed. you need to print values. these keys refer to. like on line 617 .
In your case it should be, Console.WriteLine( $"Instrument:{item,-25} LTP: {ltpResponse[item].LastPrice,-15}");
to test your invocation.
in your code above you are getting exactly what you asked for in the loop.
Item is a key in the dictionary and that is what is getting printed. you need to print values.
these keys refer to. like on line 617 .
In your case it should be,
Console.WriteLine( $"Instrument:{item,-25} LTP: {ltpResponse[item].LastPrice,-15}");
Thanks
Regards