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