add

Addition operator

add(a, b)

Parameters

Name Type Description
a field/float First operand
b field/float Second operand

Formula

```
result = a + b
```

Examples

// price above midpoint + offset
close > add((high + low) / 2, 5);

// combined high + low range
add(high, low) > 200;

Returns

Sum of the two operands ## Notes - Internally used by compiler for + operator - Inlined (no CTE generated)