if ((Volume[0] > Volume[1]) && (Volume[1] > Volume [2]))
if ((High[0] > High[1]) && (High[1] > High[2]))
This works but is there a way to combine the test so that all conditions can be evaluated in one if statement? I have tried various combinations of brackets but nothing seems to work

Comment