Trix (TRIX)
StratCraft indicator page for the TRIX momentum oscillator.
Route: /indicators/trix/
What It Does
TRIX is a triple-smoothed EMA rate-of-change oscillator. It reduces noise and is often used to confirm trend momentum shifts.
Formula
TRIX = 1-period rate of change of a triple-smoothed EMA
Parameters
period- default15_rocperiod- default1_movav- defaultEMA
C++23 API
#include <nonabt/indicators/trix.hpp>
auto trix = std::make_unique<nonabt::TRIX>(data().close(), 15, 1, "EMA");
Common Usage
- Use TRIX to confirm trend momentum.
- Pair it with a signal line or zero threshold.
- Helpful when you want a smoother momentum oscillator than plain ROC.
Practical Pattern
Use TRIX as a momentum gate: only take entries when TRIX is aligned with the higher-timeframe direction.
