[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-trixsignal-tr":3},"# Trix Signal (TRIXSIGNAL)\n\n> StratCraft indicator page for the TRIX signal line.\n\n**Route**: `\u002Findicators\u002Ftrixsignal\u002F`\n\n## What It Does\n\nTRIXSIGNAL smooths the TRIX series into a signal line for crossover analysis.\n\n## Formula\n\n`Signal = EMA(TRIX, sigperiod)` where TRIX is the triple-smoothed rate of change\n\n## Parameters\n\n- `period` - default `15`\n- `_rocperiod` - default `1`\n- `_movav` - default `EMA`\n- `sigperiod` - default `9`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Ftrixsignal.hpp>\nauto trixSignal = std::make_unique\u003Cnonabt::TRIXSIGNAL>(data().close(), 15, 1, \"EMA\", 9);\n```\n\n## Common Usage\n\n- Use it with TRIX line crossovers.\n- Pair it with trend filters to reduce false signals.\n- Helpful for momentum confirmation in slower markets.\n"]