[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-exponentialmovingaverageosc-zh-tw":3},"# 指數移動平均振盪器 (EMA Oscillator)\n\n> EMA 偏差動量的 StratCraft 指標頁面。\n\n**Route**: `\u002Findicators\u002Fexponentialmovingaverageosc\u002F`\n\n## 作用\n\nEXPONENTIALMOVINGAVERAGEOSC 衡量價格偏離其指數移動平均線（EMA）的程度。\n\n## 公式\n\n`振盪器 = 價格 - EMA(period)`\n\n## 參數\n\n- `period` - 預設 `14`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fexponentialmovingaverageosc.hpp>\nauto emaOsc = std::make_unique\u003Cnonabt::EXPONENTIALMOVINGAVERAGEOSC>(data().close(), 14);\n```\n\n## 常見用法\n\n- 用於發現偏離趨勢的動量擴張。\n- 與趨勢過濾器或均值回歸觸發信號配合使用。\n- 當你需要一個直接的 EMA 離散信號時非常有用。\n"]