[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-aroonup-zh":3},"# 阿隆上升指标 (Aroon Up)\n\n> 阿隆上升指标的 StratCraft 指标页面。\n\n**Route**: `\u002Findicators\u002Faroonup\u002F`\n\n## 作用\n\n阿隆上升指标（Aroon Up）衡量在回看周期内最近一次出现高点的时间。它是一个用于衡量价格上涨趋势近期性的工具。\n\n## 公式\n\n阿隆上升指标反映了自 `n` 周期内最高高点以来的时间。\n\n## 参数\n\n- `period` - 默认 `14`\n- `upperband` - 默认 `70`\n- `lowerband` - 默认 `30`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Faroonup.hpp>\nauto aroonup = std::make_unique\u003Cnonabt::AROONUP>(data(), 14, 70, 30);\n```\n\n## 常见用法\n\n- 将阿隆上升指标用作高点近期性的衡量标准。\n- 与阿隆下降指标结合使用以确认趋势。\n- 使用阈值进行看涨趋势检测。\n\n## 实用模式\n\n阿隆上升指标上升表明市场近期创下了更强的高点，通常支持看涨延续。\n"]