Period N (PERIODN)
QuantNexus indicator page for a generic period helper.
Route: /quantnexus/indicators/periodn/
What It Does
PERIODN is a generic period-based helper indicator exposed in the catalog for rolling-window workflows.
Formula
Output = period-based helper value
Parameters
period- default14
C++23 API
#include <nonabt/indicators/periodn.hpp>
auto periodN = std::make_unique<nonabt::PERIODN>(data().close(), 14);
Common Usage
- Use it as a utility in derived indicator pipelines.
- Treat it as an input helper rather than a primary signal.
- Keep downstream interpretation explicit.
