[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-tripleexponentialmovingaverageosc-en":3},"# Triple Exponential Moving Average Oscillator (TRIPLEEXPONENTIALMOVINGAVERAGEOSC)\n\n> StratCraft indicator page for TEMA distance from price.\n\n**Route**: `\u002Findicators\u002Ftripleexponentialmovingaverageosc\u002F`\n\n## What It Does\n\nTRIPLEEXPONENTIALMOVINGAVERAGEOSC measures how far price is from the triple exponential moving average.\n\n## Formula\n\n`Oscillator = Price - TEMA(period)`\n\n## Parameters\n\n- `period` - default `30`\n- `_movav` - default `EMA`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Ftripleexponentialmovingaverageosc.hpp>\nauto temaOsc = std::make_unique\u003Cnonabt::TRIPLEEXPONENTIALMOVINGAVERAGEOSC>(data().close(), 30, \"EMA\");\n```\n\n## Common Usage\n\n- Use it as a momentum extension gauge around TEMA.\n- Pair it with zero-line crossovers or trend filters.\n- Helpful when you want a faster oscillator built from a triple-smoothed baseline.\n"]