Skip to main content

Module tema

Module tema 

Source

Structs§

TEMA
Triple Exponential Moving Average (TEMA) TEMA = (3 * EMA1) - (3 * EMA2) + EMA3 where EMA1 = EMA(Close), EMA2 = EMA(EMA1), EMA3 = EMA(EMA2)
ZLEMA
Zero-Lag Exponential Moving Average (ZLEMA) Sometimes referred to as DEMA or a variation. ZLEMA = (2 * EMA1) - EMA2

Constants§

TEMA_METADATA
ZLEMA_METADATA