Skip to content

Exponential Moving Average (EMA)

Exponentially weighted moving average is a rolling moving average that puts more weight on current price. [Discuss] 💬

csharp
// C# usage syntax (with Close price)
IReadOnlyList<EmaResult> results =
  bars.ToEma(lookbackPeriods);

Parameters

paramtypedescription
lookbackPeriodsintNumber of periods (N) in the moving average. Must be greater than 0.

Historical price bars requirements

You must have at least 2×N or N+100 periods of bars, whichever is more, to cover the warmup and convergence periods. Since this uses a smoothing technique, we recommend you use at least N+250 data points prior to the intended usage date for better precision.

bars is a collection of generic TBar historical price bars. It should have a consistent frequency (day, hour, minute, etc). See the Guide for more information.

Response

csharp
IReadOnlyList<EmaResult>
  • This method returns a time series of all available indicator values for the bars provided.
  • It always returns the same number of elements as there are in the historical price bars.
  • It does not return a single incremental indicator value.
  • The first N-1 periods will have null values since there's not enough data to calculate.

🚩 ⚞ Convergence warning

The first N+100 periods will have decreasing magnitude, convergence-related precision errors that can be as high as ~5% deviation in indicator values for earlier periods.

EmaResult

propertytypedescription
TimestampDateTimeDate from evaluated TBar
EmadoubleExponential moving average

Utilities

See Utilities and helpers for more information.

Chaining

This indicator may be generated from any chain-enabled indicator or method.

csharp
// example
var results = bars
    .Use(CandlePart.HL2)
    .ToEma(..);

Results can be further processed on Ema with additional chain-enabled indicators.

csharp
// example
var results = bars
    .ToEma(..)
    .ToRsi(..);

See Chaining indicators for more.

Streaming

Use the buffer-style List<T> when you need incremental calculations without a hub:

csharp
EmaList emaList = new(lookbackPeriods);

foreach (IBar bar in bars)  // simulating stream
{
  emaList.Add(bar);
}

// based on `ICollection<EmaResult>`
IReadOnlyList<EmaResult> results = emaList;

Subscribe to a BarHub for advanced streaming scenarios:

csharp
BarHub barHub = new();
EmaHub observer = barHub.ToEmaHub(lookbackPeriods);

foreach (IBar bar in bars)  // simulating stream
{
  barHub.Add(bar);
}

IReadOnlyList<EmaResult> results = observer.Results;

See Buffer lists and Stream hubs for full usage guides.