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


This is the same as...

Code:
(Trend[0] > Trend[1]) &&
(Trend[1] > Trend[2]) &&
(Trend[2] > Trend[3]) &&
(Trend[3] > Trend[4])...