Lowest (LOWEST)
QuantNexus indicator page for rolling minimum detection.
Route: /quantnexus/indicators/lowest/
What It Does
LOWEST returns the lowest value observed over the selected lookback period.
Formula
Lowest = min(price over period)
Parameters
period- default14
C++23 API
#include <nonabt/indicators/lowest.hpp>
auto lowest = std::make_unique<nonabt::LOWEST>(data().close(), 14);
Common Usage
- Use it to define a rolling support floor.
- Combine it with breakout confirmation or stop placement.
- Helpful when the latest low matters more than the average.
