StratCraft

阿隆下降指标 (Aroon Down)

阿隆下降指标的 QuantNexus 指标页面。

Route: /quantnexus/indicators/aroondown/

作用

阿隆下降指标(Aroon Down)衡量在回看周期内最近一次出现低点的时间。它有助于识别下降趋势压力的强度。

公式

阿隆下降指标反映了自 n 周期内最低低点以来的时间。

参数

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

C++23 API

#include <nonabt/indicators/aroondown.hpp>
auto aroondown = std::make_unique<nonabt::AROONDOWN>(data(), 14, 70, 30);

常见用法

  • 使用阿隆下降指标来衡量下行趋势的近期性。
  • 与阿隆上升指标结合使用以确定趋势方向。
  • 使用阈值来检测强劲的下降趋势。

实用模式

当阿隆下降指标上升而阿隆上升指标下降时,下行势头通常正在增加。