[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-aroonosc-zh-tw":3},"# 阿隆振盪器 (Aroon Oscillator)\n\n> 阿隆振盪器的 StratCraft 指標頁面。\n\n**Route**: `\u002Findicators\u002Faroonosc\u002F`\n\n## 作用\n\n阿隆振盪器（Aroon Oscillator）透過比較阿隆上升指標（Aroon Up）和阿隆下降指標（Aroon Down）來描述市場是處於上升趨勢還是下降趨勢。\n\n## 公式\n\n`Aroon Oscillator = Aroon Up - Aroon Down`\n\n## 參數\n\n- `period` - 預設 `14`\n- `upperband` - 預設 `70`\n- `lowerband` - 預設 `30`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Faroonosc.hpp>\nauto aroonosc = std::make_unique\u003Cnonabt::AROONOSC>(data(), 14, 70, 30);\n```\n\n## 常見用法\n\n- 用作趨勢方向振盪器。\n- 向上穿過零軸可能暗示看漲壓力。\n- 向下穿過零軸可能暗示看跌壓力。\n\n## 實用模式\n\n阿隆振盪器高於零通常意味著上升趨勢壓力強於下降趨勢壓力。\n"]