Websocket connection

Hello Devs,

I have built a bot in python for automated trading but i facing a issue when I incorporated websocket market data feed for instrument from this link upstox-python/examples/websocket/market_data/websocket_client.py at master · upstox/upstox-python · GitHub I am receiving market feed in every candle out there 1Min/30Min/1Day …It too much data and my 16GB PC and code unable handle it n getting hanged any solutions for receiving only 1 min feed …Please me out .

You can achieve this by combining historical candles, intraday candles, and websockets.

Use historical candles for data prior to today. For data from today up to the current time, use intraday candles. Use WebSockets to append real-time data.

We use this approach to effectively handle a large number of clients with limited available memory.

Let me know if this helps.

Dear Sir,
I have already done this and it is not the issue ,I want to filter out only 1min candle data during live feed(right now it is showing data in all time frame,OHLC data, option Greeks,rest all things) I need only LTP and OHLC data in 1 min timeframe in live feed…Is there any special code for that or do we need to tweak existing code .