[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-momentumosc-en":3},"# Momentum Oscillator (MOMENTUMOSC)\n\n> StratCraft indicator page for momentum with a reference band.\n\n**Route**: `\u002Findicators\u002Fmomentumosc\u002F`\n\n## What It Does\n\nMOMENTUMOSC measures price momentum and adds a configurable band reference for easier signal filtering.\n\n## Formula\n\n`Oscillator = Price(t) - Price(t - period)`\n\n`band` defines the reference level used to compare oscillator strength.\n\n## Parameters\n\n- `period` - default `12`\n- `band` - default `100.0`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fmomentumosc.hpp>\nauto momentumOsc = std::make_unique\u003Cnonabt::MOMENTUMOSC>(data().close(), 12, 100.0);\n```\n\n## Common Usage\n\n- Use the band as a threshold for stronger moves.\n- Combine with price structure to separate noise from real acceleration.\n- Helpful in breakout systems and trend continuation filters.\n"]