does websockets support commadities symbols to get real time ticks data

its working for nse symbols(stocks and FO) but not working for MCX symbols

codeconst FyersSocket = require(“fyers-api-v3”).fyersDataSocket var fyersdata= new FyersSocket(“xx”) function onmsg(message){ console.log("log "+JSON.stringify(message)) } function onconnect(){ fyersdata.subscribe([‘MCX:CRUDEOIL23NOVFUT’]) //not subscribing for market depth data // fyersdata.mode(fyersdata.LiteMode) //set data mode to lite mode // fyersdata.mode(fyersdata.FullMode) //set data mode to full mode is on full mode by default fyersdata.autoreconnect() //enable auto reconnection mechanism in case of disconnection } function onerror(err){ console.log(err) } function onclose(){ console.log(“socket closed”) } fyersdata.on(“message”,onmsg) fyersdata.on(“connect”,onconnect) fyersdata.on(“error”,onerror) fyersdata.on(“close”,onclose) fyersdata.connect()


its a known issue. After MCX platform change, there is an issue that Fyers says they are fixing since last date 13-OCT

Hi @venkatareddy.anekal-6bv
This is known issue. Team is working on that. It will be fix by 6 Nov.

is it resolved?