[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-aroondown-zh":3},"# 阿隆下降指标 (Aroon Down)\n\n> 阿隆下降指标的 StratCraft 指标页面。\n\n**Route**: `\u002Findicators\u002Faroondown\u002F`\n\n## 作用\n\n阿隆下降指标（Aroon Down）衡量在回看周期内最近一次出现低点的时间。它有助于识别下降趋势压力的强度。\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\u002Faroondown.hpp>\nauto aroondown = std::make_unique\u003Cnonabt::AROONDOWN>(data(), 14, 70, 30);\n```\n\n## 常见用法\n\n- 使用阿隆下降指标来衡量下行趋势的近期性。\n- 与阿隆上升指标结合使用以确定趋势方向。\n- 使用阈值来检测强劲的下降趋势。\n\n## 实用模式\n\n当阿隆下降指标上升而阿隆上升指标下降时，下行势头通常正在增加。\n"]