[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-lrsi-zh-tw":3},"# 拉蓋爾相對強弱指數 (Laguerre RSI)\n\n> 基於拉蓋爾多項式的動量 StratCraft 指標頁面。\n\n**Route**: `\u002Findicators\u002Flrsi\u002F`\n\n## 作用\n\nLRSI 是一種經過拉蓋爾過濾的振盪器，其表現類似於 RSI 變體，具有更快的市場環境（regime）轉換和更平滑的波動。\n\n## 公式\n\nLRSI 使用由 `gamma` 驅動的四階段拉蓋爾遞歸，並將結果歸一化為 `0` 到 `1` 之間的振盪器。\n\n## 參數\n\n- `period` - 預設 `6`\n- `gamma` - 預設 `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## 常見用法\n\n- 將接近 `1.0` 的讀數視為看漲，接近 `0.0` 的讀數視為看跌。\n- 將中點用作市場環境切換或確認線。\n- 與拉蓋爾過濾器（Laguerre Filter）或價格結構配合使用，以實現更精準的時機判斷。\n"]