Technical IndicatorsUpdated Jun 1, 2026

Exponential Moving Average (EMA)

A moving average that weights recent prices more heavily โ€” reacts faster than a simple moving average.

Formula

EMA(today) = close(today) ร— k + EMA(yesterday) ร— (1 โˆ’ k), where k = 2 / (N + 1)

Example

10-day EMA weighting

Setup
k = 2 / (10 + 1) โ‰ˆ 0.1818. Yesterday's EMA was $100, today's close is $110.
Calculation
Today's EMA = 110 ร— 0.1818 + 100 ร— 0.8182 โ‰ˆ $101.82
Takeaway
Today's close pulled the EMA up by about $1.82 โ€” faster than an SMA of the same period would have moved.

What it is

The EMA is a moving average where the most recent days carry more weight than the oldest ones. As a result, the EMA line reacts faster to price changes than an SMA of the same period.

Why people use it

A 50-day SMA equally averages 50 days. A 50-day EMA gives extra weight to today and yesterday, less to a month ago. If you want a smoothing line that turns more quickly when price changes direction, EMA is the standard tool.

Common windows

  • EMA-9 โ€” very short-term; used as the signal line inside MACD
  • EMA-12 / EMA-26 โ€” the two periods that build the MACD line itself
  • EMA-50, EMA-100, EMA-200 โ€” medium- and long-term smoothings often shown on chart platforms

The weighting trick

Today's EMA = (today's close ร— k) + (yesterday's EMA ร— (1 โˆ’ k)), where k = 2 / (N + 1). For a 10-day EMA, today's close gets a weight of about 18%; everything before is folded into the prior EMA. There's no neat "sum and divide" formula โ€” it's a rolling, weighted update.

Related