Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 283 Bytes

ExponentialWeightedMovingAverage.md

File metadata and controls

6 lines (5 loc) · 283 Bytes

Exponential Weighted Moving Average (EWMA)

The Exponential Weighted Moving Average (EWMA) is a type of moving average that gives more weight to recent data points. It is calculated using the following formula:

EWMA = (Close - Previous EWMA) * (2 / (n + 1)) + Previous EWMA