[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-kamaenvelope-ru":3},"# Adaptive Moving Average Envelope (KAMAENVELOPE)\n\n> StratCraft indicator page for the KAMA envelope channel.\n\n**Route**: `\u002Findicators\u002Fkamaenvelope\u002F`\n\n## What It Does\n\nKAMA Envelope builds an upper and lower band around the adaptive moving average. It is useful for breakout and pullback logic around a responsive center line.\n\n## Formula\n\n`Envelope = KAMA +\u002F- perc%`\n\n## Parameters\n\n- `period` - default `30`\n- `fast` - default `2`\n- `slow` - default `30`\n- `perc` - default `2.5`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fkamaenvelope.hpp>\nauto kama_env = std::make_unique\u003Cnonabt::KAMAENVELOPE>(data().close(), 30, 2, 30, 2.5);\n```\n\n## Common Usage\n\n- Use KAMA Envelope for dynamic channel breakouts.\n- Combine it with price re-entry logic after pullbacks.\n- Helpful in trending markets with adaptive support\u002Fresistance.\n\n## Practical Pattern\n\nWhen price pushes above the upper envelope, the trend may be accelerating; when it falls back inside, momentum may be cooling.\n"]