StratCraft

終極振盪器 (Ultimate Oscillator)

多時間框架動量振盪器的 QuantNexus 指標頁面。

Route: /quantnexus/indicators/ultosc/

作用

ULTOSC 結合了三個回看窗口,以減少單一週期的噪音並穩定動量讀數。

公式

ULTOSC = 短、中、長期週期買盤壓力相對於真實波幅(true range)的加權混合

參數

  • p1 - 預設 7
  • p2 - 預設 14
  • p3 - 預設 28
  • upperband - 預設 70
  • lowerband - 預設 30

C++23 API

#include <nonabt/indicators/ultosc.hpp>
auto ultosc = std::make_unique<nonabt::ULTOSC>(7, 14, 28, 70.0, 30.0);

常見用法

  • 用作具有多個視野(horizon)的動量振盪器。
  • 與閾值規則或背離檢查配合使用。
  • 當單一回看週期噪音太大時非常有用。