Operators
The signal editor enables you with a set of well known operators. We’ve added a set of special crossover operators to make things easier.
Symbol | Name | Category |
---|---|---|
Cross | Crossover | |
Up Cross | Crossover | |
Down Cross | Crossover | |
== | Equal | Comparison |
!= | Not Equal | Comparison |
>= | Above or Equal | Comparison |
<= | Below or Equal | Comparison |
> | Above | Comparison |
< | Below | Comparison |
+ | Add | Mathematical |
- | Subtract | Mathematical |
/ | Divide | Mathematical |
* | Multiply | Mathematical |
% | Modulo | Mathematical |
Cross
Use this operator if the direction of the crossover does not matter.

Up Cross
Use this operator if the direction crosses over from below (Up Cross).

Down Cross
Use this operator if the direction crosses over from above (Down Cross).

Equal
Comparison operator. Returns true if both sides of the expression are equal.

Not Equal
Comparison operator. Condition is met if both sides of the condition are not equal.

Above Or Equal
Comparison operator. Condition is met if the left side of the condition is above or equal to the right side of the condition.

Below Or Equal
Comparison operator. Condition is met if the left side of the condition is below or equal to the right side of the condition.

Above
Comparison operator. Condition is met if the left side of the condition is above the right side of the condition.

Below
Comparison operator. Condition is met if the left side of the condition is below the right side of the condition.

Add
Use this operator to add numbers.

Substract
Use this operator to substract numbers.

Divide
Use this operator to divide numbers.

Multiply
Use this operator to multiply numbers.

Modulo
Returns the remainder after a division.
