[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-zerolagindicatorosc-pt":3},"# Zero Lag Indicator Oscillator (ZEROLAGINDICATOROSC)\n\n> StratCraft indicator page for distance from the zero-lag indicator baseline.\n\n**Route**: `\u002Findicators\u002Fzerolagindicatorosc\u002F`\n\n## What It Does\n\nZEROLAGINDICATOROSC measures how far price is extended away from the zero-lag indicator.\n\n## Formula\n\n`Oscillator = Price - ZLIndicator(period, gainlimit)`\n\n## Parameters\n\n- `period` - default `30`\n- `gainlimit` - default `50`\n- `_movav` - default `EMA`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fzerolagindicatorosc.hpp>\nauto zlOsc = std::make_unique\u003Cnonabt::ZEROLAGINDICATOROSC>(data().close(), 30, 50, \"EMA\");\n```\n\n## Common Usage\n\n- Use the zero line for trend confirmation.\n- Pair it with ZLIndicator or its envelope for extension checks.\n- Helpful for pullback, momentum, and reversion signals.\n"]