[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-zlemaenvelope-zh-tw":3},"# 零滯後指數移動平均包絡線 (ZLEMA Envelope)\n\n> 基於 ZLEMA 的包絡線的 StratCraft 指標頁面。\n\n**Route**: `\u002Findicators\u002Fzlemaenvelope\u002F`\n\n## 作用\n\nZLEMAENVELOPE 在零滯後指數移動平均線周圍包裹百分比帶。\n\n## 公式\n\n`上軌 = ZLEMA(period) * (1 + perc \u002F 100)` 且 `下軌 = ZLEMA(period) * (1 - perc \u002F 100)`\n\n## 參數\n\n- `period` - 預設 `30`\n- `_movav` - 預設 `EMA`\n- `perc` - 預設 `2.5`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fzlemaenvelope.hpp>\nauto zlemaEnvelope = std::make_unique\u003Cnonabt::ZLEMAENVELOPE>(data().close(), 30, \"EMA\", 2.5);\n```\n\n## 常見用法\n\n- 用於檢測滯後減少的平均線周圍的過度拉伸走勢。\n- 與交叉進場或回調規則配合使用。\n- 當你需要的包絡線比 SMA 或 EMA 帶更快速時非常有用。\n"]