# Operation N (OPERATIONN)

> QuantNexus indicator page for a rolling operation helper.

**Route**: `/quantnexus/indicators/operationn/`

## What It Does

OPERATIONN is a rolling helper indicator used to apply an operation across a lookback window.

## Formula

`Output = configured operation applied over the selected period`

## Parameters

- `period` - default `14`

## C++23 API

```cpp
#include <nonabt/indicators/operationn.hpp>
auto operationN = std::make_unique<nonabt::OPERATIONN>(data().close(), 14);
```

## Common Usage

- Use it in analysis pipelines and derived features.
- Treat it as a utility rather than a standalone strategy signal.
- Keep it paired with a clearly defined downstream interpretation.
