[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-temaenvelope-en":3},"# Triple Exponential Moving Average Envelope (TEMAENVELOPE)\n\n> StratCraft indicator page for a TEMA-based envelope.\n\n**Route**: `\u002Findicators\u002Ftemaenvelope\u002F`\n\n## What It Does\n\nTEMAENVELOPE surrounds a triple exponential moving average with percentage bands.\n\n## Formula\n\n`Upper = TEMA(period) * (1 + perc \u002F 100)` and `Lower = TEMA(period) * (1 - perc \u002F 100)`\n\n## Parameters\n\n- `period` - default `30`\n- `_movav` - default `EMA`\n- `perc` - default `2.5`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Ftemaenvelope.hpp>\nauto temaEnvelope = std::make_unique\u003Cnonabt::TEMAENVELOPE>(data().close(), 30, \"EMA\", 2.5);\n```\n\n## Common Usage\n\n- Use it to spot extensions around a faster, smoother trend line.\n- Pair it with crossovers or mean-reversion triggers.\n- Helpful for swing systems that want a less laggy envelope.\n"]