Submitted by linnsoft on Tue, 04/23/2013 - 20:49
| Function | Description | Example |
| SQRT(X) | Square Root of X | SQRT(HI _ LO) |
| ABS(X) | Absolute Value of X | ABS(CL - CL1) |
| MIN(X,Y) | Minimum Value of X during the preceding Y periods | MIN(RSI, 5) |
| MAX(X,Y) | Maximum Value of X during the preceding Y periods | MAX((HI4 - LO), 8) |
| AVG(X,Y) | Average Value of X during the preceding Y periods | AVG((HI - LO), 7) |
| STD(X,Y) | Standard Deviation of X during the preceding Y periods | STD(MA, 12) |
| INT(X) | Rounds down X to the lower whole number. | INT(HI) |
| LOG(X) | Base 10 logarithm of X | LOG(CL) |
| ROU(X, Y) | Rounds X to the nearest nearest multiple of Y | ROU(LO, 0.01) |
| SET(X,Y) | Sets value of property X to the value Y | |
| SUM(X,Y) | Sum of X for the preceding Y periods | SUM(HI, 10) |