TREND, MOVING AVERAGES & STRUCTURE
Rolling min
The lowest value another series reached over a recent window.
spec id: rolling_minlength (default 20)
What does Rolling min measure?
The lowest value another series reached over a recent window. This is the squeeze primitive: Bollinger width at its own 60-day low.
How is Rolling min calculated?
You point it at a `source` — either a base feature like `close` or an indicator you attached EARLIER in the list — and it reports the smallest value that source has taken over the last 20 candles. Only past candles are ever read.
Written by reading the engine’s real computation, not a textbook — where the two differ, the page describes what actually runs.
How do I use Rolling min in a bot?
In the builder, add an indicator of type rolling_min (parameters: length, default 20). Its value becomes an operand you can compare in any entry or exit rule. The engine grades the whole rule honestly: real fills, no look-ahead, half the history held back.
Related indicators
- Sine WMAA moving average whose weights rise to a peak in the middle of the window and taper at both ends — a very smooth line.
- SMAThe plain trend line — the classic "is this stock healthy?
- Smoothed MAThe smoothed moving average — the same slow, sticky line as Wilder's RMA, under its other common name.
- Super smootherAn engineer's smoother: it removes the fast noise from price while adding far less delay than an ordinary moving average.
Or browse all 158 indicators in the full library.