# 阿隆上升指標 (Aroon Up)

> 阿隆上升指標的 StratCraft 指標頁面。

**Route**: `/quantnexus/indicators/aroonup/`

## 作用

阿隆上升指標（Aroon Up）衡量在回看週期內最近一次出現高點的時間。它是一個用於衡量價格上漲趨勢近期性的工具。

## 公式

阿隆上升指標反映了自 `n` 週期內最高高點以來的时间。

## 參數

- `period` - 預設 `14`
- `upperband` - 預設 `70`
- `lowerband` - 預設 `30`

## C++23 API

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

## 常見用法

- 將阿隆上升指標用作高點近期性的衡量標準。
- 與阿隆下降指標結合使用以確認趨勢。
- 使用閾值進行看漲趨勢檢測。

## 實用模式

阿隆上升指標上升表明市場近期創下了更強的高點，通常支持看漲延續。
