For the script below:
if ((MACD2.Diff[0] > 0)
&& (ParabolicSAR1[0] < Low[0])
Assuming my default time frame is (renko based). I would like the ParabolicSAR calculation to be based on the 1min time frame. In other words, the MACD calculation will be based on my default time frame but the "ParabolicSAR 1[0]< [Low][0]" condition will be based on the "Low" of the 1min bar.
Similarly, if I wanted to check if the last 1min candle closed above the OPEN on my script, how would I do that?

Comment