What is the code to fetch 1 hr ohlc data?

I can see the following codes for different time interval

For the 1d interval, a single candle representing the previous day is returned. In the case of I1 and I30 intervals, two candles, one for the current and one for the preceding are provided.

But I cannot see for 1 hour. How can I fetch one hour OHLC data.

Hi @GEETA_2313205
The one-hour interval for live OHLC data is not directly available.
If you require a one-hour interval, you will need to combine two 30-minute candles on your end to compute the OHLC values.

Thanks!