Hi there, how can I get the IsRising Value, from previous bars? That is, I can do:
Print("The val is " + SMA(20)[5]);
Print("Is Rising is " + IsRising(SMA(20)));
But, when I attempt to combine both of these:
Print("Is rising 5 bars ago is " + IsRising(SMA(20))[5]);
Then I get an overloaded error. How can I perform IsRising, beyond the current bar?
Thanks

Comment