# 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` - default `2`
- `af` - default `0.02`
- `afmax` - default `0.2`

## C++23 API

```cpp
#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.
