Can anyone help for the code that plots " closing value of the Highest high Candle in previous day "
I have this one
It plots but from the High value of Highest high candle. what is the code for Closing value of highest high candle ? searched amibroker(HHV,LLV) but not much help.
Thanks
I have this one
Code:
H1 = TimeFrameGetPrice("H", inDaily, -1);
Plot(H1, "",colorRed,styleDashed);
Thanks