# 阿隆振荡器 (Aroon Oscillator)

> 阿隆振荡器的 StratCraft 指标页面。

**Route**: `/indicators/aroonosc/`

## 作用

阿隆振荡器（Aroon Oscillator）通过比较阿隆上升指标（Aroon Up）和阿隆下降指标（Aroon Down）来描述市场是处于上升趋势还是下降趋势。

## 公式

`Aroon Oscillator = Aroon Up - Aroon Down`

## 参数

- `period` - 默认 `14`
- `upperband` - 默认 `70`
- `lowerband` - 默认 `30`

## C++23 API

```cpp
#include <nonabt/indicators/aroonosc.hpp>
auto aroonosc = std::make_unique<nonabt::AROONOSC>(data(), 14, 70, 30);
```

## 常见用法

- 用作趋势方向振荡器。
- 向上穿过零轴可能暗示看涨压力。
- 向下穿过零轴可能暗示看跌压力。

## 实用模式

阿隆振荡器高于零通常意味着上升趋势压力强于下降趋势压力。
