Thanks Petra. I see. I read the manual carefully again, it appears to be a simple 2 data point comparision instead of some slope calculation across the +n lookback period.

So if I want to check if the series was been rising for the previous X bar, I would do:

rising(Trend) && rising(Trend+1) && rising(Trend+2) && rising(Trend+3)...

correct?

Thanks!