[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-rsi_ema-en":3},"# RSI EMA (RSI_EMA)\n\n> StratCraft indicator page for RSI with exponential smoothing.\n\n**Route**: `\u002Findicators\u002Frsi-ema\u002F`\n\n## What It Does\n\nRSI_EMA calculates RSI using an exponential moving average variant for smoothing.\n\n## Formula\n\n`RSI = 100 - [100 \u002F (1 + RS)]`, with exponential smoothing applied to the gain\u002Floss series.\n\n## Parameters\n\n- `period` - default `14`\n- `movav` - default `ExponentialMovingAverage`\n- `upperband` - default `70`\n- `lowerband` - default `30`\n- `safediv` - default `False`\n- `safehigh` - default `100`\n- `safelow` - default `50`\n- `lookback` - default `1`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Frsi_ema.hpp>\nauto rsiEma = std::make_unique\u003Cnonabt::RSI_EMA>(data().close(), 14, \"ExponentialMovingAverage\", 70.0, 30.0, \"False\", 100.0, 50.0, 1);\n```\n\n## Common Usage\n\n- Use it like RSI but with EMA-style smoothing.\n- Pair it with overbought\u002Foversold thresholds.\n- Helpful when you want a faster-reacting RSI variant.\n"]