Hi all,
I was wondering if there is a command that I have overlooked that will display the absolute highest high of all candles over n candles, not just the close. I am currently using highest[n] but this will display the highest close. E.g. 4h candle closes at 1000 but reached 1005 at some point – I would want to “grab” 1005 instead of 1000. I reckon it could be done via lower timeframes but maybe there is a more elegant way that I have missed. Thanks in advance 🙂
Hi,
myvalue = highest[n](high)
Thanks, highest[n](high) worked!