Skip to content

TEMA

Triple EMA — triple smoothing of an exponential moving average to reduce lag. Triple EMA (TEMA) uses three EMAs to further reduce lag. The formula is built as a linear combination of EMA, EMA(EMA) and EMA(EMA(EMA)). It provides an even faster reaction than DEMA at the same period length, but generates more noise.

Formula:

EMA1 = EMA(Close, period)
EMA2 = EMA(EMA1, period)
EMA3 = EMA(EMA2, period)
TEMA = 3*EMA1 - 3*EMA2 + EMA3
ParameterTypeDefaultRange / Values
Periodint201-200
TriggerDirectionConditionDescription
Price crosses the line up🟢 BuyPrice crossed the indicator line from below to above.The closing price crossed the indicator line from below to above.
Price crosses the line down🔴 SellPrice crossed the indicator line from above to below.The closing price crossed an arbitrary indicator line (MA, Supertrend, etc.) from above to below.
Price above the line🟢 BuyThe closing price is above the indicator line.The closing price is above the indicator line (MA, Supertrend, etc.). Reflects the current position of price relative to the trend line.
Price below the line🔴 SellThe closing price is below the indicator line.The closing price is below the indicator line.