[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-smoothedmovingaverageosc-de":3},"# Smoothed Moving Average Oscillator (SMOOTHEDMOVINGAVERAGEOSC)\n\n> StratCraft indicator page for SMMA deviation momentum.\n\n**Route**: `\u002Findicators\u002Fsmoothedmovingaverageosc\u002F`\n\n## What It Does\n\nSMOOTHEDMOVINGAVERAGEOSC measures how far price is extended away from a smoothed moving average.\n\n## Formula\n\n`Oscillator = Price - SMMA(period)`\n\n## Parameters\n\n- `period` - default `30`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fsmoothedmovingaverageosc.hpp>\nauto smmaOsc = std::make_unique\u003Cnonabt::SMOOTHEDMOVINGAVERAGEOSC>(data().close(), 30);\n```\n\n## Common Usage\n\n- Use it to gauge distance from a Wilder-style baseline.\n- Pair it with threshold rules or SMMA crossovers.\n- Useful for momentum extension and pullback analysis.\n"]