Math Operator Functions
ADD - Vector Arithmetic Add
DIV - Vector Arithmetic Div
MAX - Highest value over a specified period
real = MAX(real, timeperiod=30)
MAXINDEX - Index of highest value over a specified period
integer = MAXINDEX(real, timeperiod=30)
MIN - Lowest value over a specified period
real = MIN(real, timeperiod=30)
MININDEX - Index of lowest value over a specified period
integer = MININDEX(real, timeperiod=30)
MINMAX - Lowest and highest values over a specified period
min, max = MINMAX(real, timeperiod=30)
MINMAXINDEX - Indexes of lowest and highest values over a specified period
minidx, maxidx = MINMAXINDEX(real, timeperiod=30)
MULT - Vector Arithmetic Mult
real = MULT(real0, real1)
SUB - Vector Arithmetic Subtraction
SUM - Summation
real = SUM(real, timeperiod=30)
Documentation Index
All Function Groups