[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-oscillatormixin-tr":3},"# Oscillator Mix In (OSCILLATORMIXIN)\n\n> StratCraft indicator page for an oscillator mixin-style acceleration line.\n\n**Route**: `\u002Findicators\u002Foscillatormixin\u002F`\n\n## What It Does\n\nOSCILLATORMIXIN is a helper-style oscillator that tracks acceleration using the configured period and factor settings.\n\n## Formula\n\nThe line is updated from `period`, `af`, and `afmax` inputs to produce a trend-acceleration value.\n\n## Parameters\n\n- `period` - default `2`\n- `af` - default `0.02`\n- `afmax` - default `0.2`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Foscillatormixin.hpp>\nauto oscMixin = std::make_unique\u003Cnonabt::OSCILLATORMIXIN>(data().close(), 2, 0.02, 0.2);\n```\n\n## Common Usage\n\n- Use it as an internal acceleration helper.\n- Pair it with a direction filter before acting on the signal.\n- Keep it in confirmation workflows instead of standalone execution logic.\n"]