Need Websocket Candle Data LIVE(StreamLiveOHLCV) stream of 1sec,1min, 5min like ICICI breeze api

Candle Data LIVE(StreamLiveOHLCV)
This feature allows the user to stream OHLCV candle data in real time via websockets with lower latency. Candle intervals supported are 1 second, 1 minute, 5 minutes and 30 minutes. Below, is the set instructions to use this feature.

please create this feature

Hello @ak6

Welcome to Dhan Community!

Thanks for the feedback, will definitely check the use case for the same and feasibility to provide either on streaming itself or as part of library on top of existing websockets.

You can fetch 1 min intraday data currently via Rest APIs - Historical Data - DhanHQ Ver 1.0 / API Document

Hi,

I’m using websockets to fetch real-time market data, but I’m encountering an issue where the open, high, low, and close values I receive are not updating correctly. Despite receiving new data every second, these values seem to remain stuck at the market open values (9:15 AM) and do not reflect the current time frame.

Here is a snippet of my code:

CODE:

from dhanhq import marketfeed

Add your Dhan Client ID and Access Token

client_id = “Dhan Client ID”
access_token = “Access Token”

Structure for subscribing is (exchange_segment, “security_id”, subscription_type)

instruments = [(marketfeed.NSE, “1333”, marketfeed.Quote)]

try:
data = marketfeed.DhanFeed(client_id, access_token, instruments)
while True:
data.run_forever()
response = data.get_data()
print(response)

except Exception as e:
print(e)

Close Connection

data.disconnect()

And here is the output I’m getting:

{‘type’: ‘Quote Data’, ‘exchange_segment’: 1, ‘security_id’: 1333, ‘LTP’: ‘1633.55’, ‘LTQ’: 5, ‘LTT’: ‘12:52:08’, ‘avg_price’: ‘1635.49’, ‘volume’: 4677293, ‘total_sell_quantity’: 959632, ‘total_buy_quantity’: 423493, ‘open’: ‘1637.75’, ‘close’: ‘1637.75’, ‘high’: ‘1639.75’, ‘low’: ‘1630.20’}
{‘type’: ‘Quote Data’, ‘exchange_segment’: 1, ‘security_id’: 1333, ‘LTP’: ‘1633.55’, ‘LTQ’: 5, ‘LTT’: ‘12:52:09’, ‘avg_price’: ‘1635.49’, ‘volume’: 4677298, ‘total_sell_quantity’: 959635, ‘total_buy_quantity’: 423033, ‘open’: ‘1637.75’, ‘close’: ‘1637.75’, ‘high’: ‘1639.75’, ‘low’: ‘1630.20’}
{‘type’: ‘Quote Data’, ‘exchange_segment’: 1, ‘security_id’: 1333, ‘LTP’: ‘1633.65’, ‘LTQ’: 1, ‘LTT’: ‘12:52:09’, ‘avg_price’: ‘1635.49’, ‘volume’: 4678543, ‘total_sell_quantity’: 961004, ‘total_buy_quantity’: 422714, ‘open’: ‘1637.75’, ‘close’: ‘1637.75’, ‘high’: ‘1639.75’, ‘low’: ‘1630.20’}

As you can see, the OHLC values remain constant and do not update with each new tick. Could you please help me resolve this issue?

Thanks!

1 Like

Hello @Vivek3

Welcome to MadeForTrade community!

Added reply to your query here: New release - Subscribe to new segment when connection is ON - #4 by Hardik

Is the ohlc data for live feed now available using web sockets?