# Exponential Moving Average

**Acronym:** EMA  
**Category:** metrics  
**Short Description:** Weighted moving average giving more importance to recent data.  
**Last Updated:** 2024-03-20T11:00:00Z

## Definition

An exponential moving average is a type of moving average that places greater weight on more recent data points, making it more responsive to recent changes while still smoothing out noise. This is particularly useful for metrics that require faster reaction to changes.

## Calculation

**Formula:** `EMA = (Current Value × Smoothing Factor) + (Previous EMA × (1 - Smoothing Factor))`

**Explanation:** The exponential moving average is calculated by combining the current value and the previous EMA, with the smoothing factor determining the weight of each

### Components

- **Current Value**: The metric value for the current period
- **Previous EMA**: The exponential moving average value from the previous period
- **Smoothing Factor**: The weight given to the current value compared to the previous EMA

## Examples

- EMA of conversion rate to quickly detect performance drops
- Bid adjustments based on EMA of CPC trends

## Related Terms

### Similar Terms

- **[Moving Average](/resources/glossary/metrics/moving-average)**: Standard moving average provides stable baseline while EMA adapts faster to changes

### Component Terms

- **[Statistical Significance](/resources/glossary/metrics/statistical-significance)**: Validates whether EMA changes represent genuine performance shifts versus random variation
- **[Standard Deviation](/resources/glossary/metrics/standard-deviation)**: Establishes adaptive thresholds for EMA-based monitoring

## Related Resources

- [Moving Average Interactive Example in AdSights Creative Fatigue Article](/blog/topics/creative-strategy/creative-fatigue-in-meta-ads-detection-and-management-strategies) - Demonstrates how moving averages help identify creative fatigue patterns in advertising performance
