[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

TS 2000 ELA Operator Precedence



PureBytes Links

Trading Reference Links

I found that:
(value1 + value2)/2*MaxBarsBack;

gave different results than:

(value1 + value2)/(2*MaxBarsBack).

I thought normal operator precedence was parenthesis, "*", and then "/" ?.