| Time | Value | Moving Average |
|---|
Types of Moving Averages
| Type | Formula / Logic | When to Use |
|---|---|---|
| Simple (SMA) | Average of the last N values: SMAₜ = (xₜ₋ₙ₊₁ + xₜ₋ₙ₊₂ + ... + xₜ) / N |
Basic trend analysis, equal weighting |
| Weighted (WMA) | Higher weights to recent values: WMAₜ = (Σ wᵢ × xₜ₋ᵢ) / (Σ wᵢ) |
When recent data is more important |
| Exponential (EMA) | Exponential smoothing: EMAₜ = α × xₜ + (1-α) × EMAₜ₋₁ (α = 2/(N+1) or user-defined) |
Smoother results, reacts faster to changes |
Common Use Cases
- Stock Trading: Identify trends and potential buy/sell signals
- Sales Forecasting: Smooth out seasonal fluctuations
- Quality Control: Monitor process variations over time
- Economic Indicators: Analyze long-term trends in economic data
- Weather Data: Identify climate patterns and anomalies