add

Addition operator

add(a, b)

Parameters

Name Type Description
a field First operand
b field 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

float

Notes

Internally used by compiler for + operator. Inlined (no CTE generated).