# 阿隆上升指标 (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);
```

## 常见用法

- 将阿隆上升指标用作高点近期性的衡量标准。
- 与阿隆下降指标结合使用以确认趋势。
- 使用阈值进行看涨趋势检测。

## 实用模式

阿隆上升指标上升表明市场近期创下了更强的高点，通常支持看涨延续。
