[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-lrsi-en":3},"# Laguerre RSI (LRSI)\n\n> StratCraft indicator page for Laguerre-based momentum.\n\n**Route**: `\u002Findicators\u002Flrsi\u002F`\n\n## What It Does\n\nLRSI is a Laguerre-filtered oscillator that behaves like an RSI variant with faster regime shifts and smoother swings.\n\n## Formula\n\nLRSI uses a four-stage Laguerre recursion driven by `gamma` and normalizes the result into an oscillator between `0` and `1`.\n\n## Parameters\n\n- `period` - default `6`\n- `gamma` - default `0.5`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Flrsi.hpp>\nauto lrsi = std::make_unique\u003Cnonabt::LRSI>(data().close(), 6, 0.5);\n```\n\n## Common Usage\n\n- Treat readings near `1.0` as bullish and near `0.0` as bearish.\n- Use the midpoint as a regime switch or confirmation line.\n- Pair with Laguerre Filter or price structure for tighter timing.\n"]