阿隆下降指標 (Aroon Down)
阿隆下降指標的 QuantNexus 指標頁面。
Route: /quantnexus/indicators/aroondown/
作用
阿隆下降指標(Aroon Down)衡量在回看週期內最近一次出現低點的時間。它有助於識別下降趨勢壓力的強度。
公式
阿隆下降指標反映了自 n 週期內最低低點以来的时间。
參數
period- 預設14upperband- 預設70lowerband- 預設30
C++23 API
#include <nonabt/indicators/aroondown.hpp>
auto aroondown = std::make_unique<nonabt::AROONDOWN>(data(), 14, 70, 30);
常見用法
- 使用阿隆下降指標來衡量下行趨勢的近期性。
- 與阿隆上升指標結合使用以確定趨勢方向。
- 使用閾值來檢測強勁的下降趨势。
實用模式
當阿隆下降指標上升而阿隆上升指標下降時,下行勢頭通常正在增加。
