[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-dicksonmovingaverageosc-zh-tw":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"]