CATEGORY

Math nodes

11 Math building blocks in the Algovex node library. Each is a node you can drop on the visual canvas, connect into a strategy, backtest and export. No code required.

  • Level Buffer

    Adds a buffer on top of any level. Wire a level (an IFVG / order-block / FVG / supply-demand edge, a liquidity wall, POC, VWAP, swing) into inputPrice and add a buffer in ATR, ticks/points, or percent — the universal building block for "put the stop just beyond the zone". Positive buffer goes above the level, negative goes below. Optionally set Stop Side (long/short) to place the buffer on that side's safe direction automatically.

  • Math Abs

    Returns the absolute value of the selected source series at the current bar. Useful for removing sign from change/delta outputs before further processing.

  • Math Add

    Adds a constant value (addend) or a connected inputB to the selected source series. Use for offsetting indicator values or combining two numeric streams.

  • Math Aggregate

    Configurable rolling-window reducer over a price source. Pick the function (mean, sum, highest, lowest, range, stddev) and the lookback period. Replaces the separate average/sum/highest/lowest/minmax/stddev math nodes.

  • Math Ceil

    Returns the ceiling (smallest integer greater than or equal to the value) of the selected source. Useful for rounding up price levels to whole numbers.

  • Math Change

    Returns the difference between the current bar source value and the previous bar source value (current - previous). Measures bar-to-bar movement.

  • Math Clamp

    Constrains the source value to a [min, max] range. Output = min(max, max(min, value)). Also outputs a boolean indicating whether clamping was applied.

  • Math Divide

    Divides the selected source by a divisor (constant or from connected inputB). Returns 0 on division by zero with a warning. Useful for normalization and ratio calculations.

  • Math Exp

    Computes the exponential function. Natural mode returns e^value. Power mode returns value^exponent. Non-finite results are clamped to 0.

  • Math Floor

    Returns the floor (largest integer less than or equal to the value) of the selected source. Useful for rounding down price levels to whole numbers.

  • Math Log

    Computes the logarithm of the source value. Supports natural (ln), base-10 (log10), and base-2 (log2) modes. Returns 0 for non-positive inputs.

Explore other categories

Algovex Math nodes | Algovex node library