[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-dicksonmovingaverageosc-zh":3},"# 迪克森移动平均振荡器 (Dickson Moving Average Oscillator)\n\n> 迪克森移动平均振荡器的 StratCraft 指标页面。\n\n**Route**: `\u002Findicators\u002Fdicksonmovingaverageosc\u002F`\n\n## 作用\n\n该振荡器衡量价格与迪克森移动平均线框架之间的差距。它对于动量和拉伸（stretch）分析非常有用。\n\n## 公式\n\n该振荡器将价格与迪克森移动平均基准线进行比较，并将差异表达为动量信号。\n\n## 参数\n\n- `period` - 默认 `30`\n- `gainlimit` - 默认 `50`\n- `hperiod` - 默认 `7`\n- `_movav` - 默认 `EMA`\n- `_hma` - 默认 `HMA`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fdicksonmovingaverageosc.hpp>\nauto dmaosc = std::make_unique\u003Cnonabt::DICKSONMOVINGAVERAGEOSC>(data().close(), 30, 50, 7, \"EMA\", \"HMA\");\n```\n\n## 常见用法\n\n- 用作趋势振荡器。\n- 与零轴规则结合使用。\n- 用于识别过度扩张。\n\n## 实用模式\n\n正值可能表明价格在迪克森基准线之上具有强度；负值可能表明疲软。\n"]