[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-zlindicator-es":3},"# Zero Lag Indicator (ZLINDICATOR)\n\n> StratCraft indicator page for an error-correcting trend baseline.\n\n**Route**: `\u002Findicators\u002Fzlindicator\u002F`\n\n## What It Does\n\nZLINDICATOR smooths price with an error-correcting style adjustment that aims to reduce lag.\n\n## Formula\n\nThe series follows an adjusted moving average that reacts faster than a plain EMA.\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\u002Fzlindicator.hpp>\nauto zlIndicator = std::make_unique\u003Cnonabt::ZLINDICATOR>(data().close(), 30, 50, \"EMA\");\n```\n\n## Common Usage\n\n- Use it as a low-lag trend baseline.\n- Pair it with price crossovers or envelope logic.\n- Helpful when you want lag reduction without a fully custom filter.\n"]