終極振盪器 (Ultimate Oscillator)
多時間框架動量振盪器的 QuantNexus 指標頁面。
Route: /quantnexus/indicators/ultosc/
作用
ULTOSC 結合了三個回看窗口,以減少單一週期的噪音並穩定動量讀數。
公式
ULTOSC = 短、中、長期週期買盤壓力相對於真實波幅(true range)的加權混合
參數
p1- 預設7p2- 預設14p3- 預設28upperband- 預設70lowerband- 預設30
C++23 API
#include <nonabt/indicators/ultosc.hpp>
auto ultosc = std::make_unique<nonabt::ULTOSC>(7, 14, 28, 70.0, 30.0);
常見用法
- 用作具有多個視野(horizon)的動量振盪器。
- 與閾值規則或背離檢查配合使用。
- 當單一回看週期噪音太大時非常有用。
