Oscillator Mix In (OSCILLATORMIXIN)
QuantNexus indicator page for an oscillator mixin-style acceleration line.
Route: /quantnexus/indicators/oscillatormixin/
What It Does
OSCILLATORMIXIN is a helper-style oscillator that tracks acceleration using the configured period and factor settings.
Formula
The line is updated from period, af, and afmax inputs to produce a trend-acceleration value.
Parameters
period- default2af- default0.02afmax- default0.2
C++23 API
#include <nonabt/indicators/oscillatormixin.hpp>
auto oscMixin = std::make_unique<nonabt::OSCILLATORMIXIN>(data().close(), 2, 0.02, 0.2);
Common Usage
- Use it as an internal acceleration helper.
- Pair it with a direction filter before acting on the signal.
- Keep it in confirmation workflows instead of standalone execution logic.
