Size Highs and Lows 2

Category: volatility, momentum

Measures the absolute size (Close - Open) of bullish and bearish candles separately, tracking their historical peaks and the net delta between them.

Formula

HighBuffer = (Close > Open) ? (Close - Open) : 0; LowBuffer = (Close <= Open) ? (Close - Open) : 0; maxHigh = highest(HighBuffer, N); maxLow = lowest(LowBuffer, N); maxDelta = maxHigh + maxLow;

Inputs

See signal primitives and every published strategy that uses Size Highs and Lows 2 on WOBR StrategyVerse.


Open the interactive page on WOBR AI → · WOBR.AI home