Hello,
I would like to plot the daily chart highs as follows:
rec dailyHigh = if high > dailyHigh[1] then high else dailyHigh[1];
plot recordHigh = dailyHigh;
But I would like to plot the last value on the intraday chart and ignore today's value. How would I go about doing this? Any guidance would be appreciated.
Thank you!
I would like to plot the daily chart highs as follows:
rec dailyHigh = if high > dailyHigh[1] then high else dailyHigh[1];
plot recordHigh = dailyHigh;
But I would like to plot the last value on the intraday chart and ignore today's value. How would I go about doing this? Any guidance would be appreciated.
Thank you!