[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-dma-en":3},"# Dickson Moving Average (DMA)\n\n> StratCraft indicator page for Dickson Moving Average.\n\n**Route**: `\u002Findicators\u002Fdma\u002F`\n\n## What It Does\n\nDMA is a Dickson-style moving average variant that adapts smoothing characteristics to market behavior.\n\n## Formula\n\nDMA is a custom moving average blend using period, gain limit, and harmonic period settings.\n\n## Parameters\n\n- `period` - default `30`\n- `gainlimit` - default `50`\n- `hperiod` - default `7`\n- `_movav` - default `EMA`\n- `_hma` - default `HMA`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fdma.hpp>\nauto dma = std::make_unique\u003Cnonabt::DMA>(data().close(), 30, 50, 7, \"EMA\", \"HMA\");\n```\n\n## Common Usage\n\n- Use DMA as an adaptive trend line.\n- Combine it with price crossovers.\n- Helpful where you want custom smoothing behavior.\n\n## Practical Pattern\n\nDMA is typically used as the center of a trend-following or envelope-style setup.\n"]