How can I get an absolute value of a difference in Guided Track? I've tried ABS(-4), |-4|, and abs(-4).
I'm afraid we do not have a built-in function for that but you can get the same behavior with
>> x_abs = x *if: x < 0 >> x_abs = x*(-1)
Here is a sample program you can use inside yours.