[email protected] Hi Amol, would you mind to share your C# Websocket subscription piece of codes ?, i am able to get quote but not able to change mode to "ltp" or "full" , below is the codes i am using to change mode but on the stream no change happens , its still 44 bytes quote, i have mentioned my email id at the top.
string data = {"a": "mode", "v": ["full", [408065]}
dynamic encoded = Encoding.UTF8.GetBytes(data);
dynamic buffer = new ArraySegment(encoded, 0, encoded.Length);
webSocket.SendAsync(buffer, WebSocketMessageType.Text, true, CancellationToken cancellation);
June 2016