I use expandpoint to plot hourly bars in my lower timeframe.
over midnight, i get 2 bars instead of 1 bar. How do i fix it?
wo = TimeFrameGetPrice( "O", inHourly, 0, expandPoint );
wh = TimeFrameGetPrice( "H", inHourly, 0, expandPoint );
wl = TimeFrameGetPrice( "L",inHourly, 0, expandPoint );
wc = TimeFrameGetPrice( "C", inHourly, 0, expandPoint );
PlotOHLC( wo, wh, wl, wc, " Hour Close", colorWhite, styleCandle );
highest100days=HHV(H,100);
lowest100days=llv(l,100);
Plot(highest100days, "highest100days", colorGreen, styleLine, Null, Null, -1 );
Plot(lowest100days, "lowest100days", colorRed, styleLine, Null, Null, -1 );
my intraday setting