Endpoint Moving Average (EPMA)

Endpoint Moving Average (EPMA), also known as Least Squares Moving Average (LSMA), plots the projected last point of a defined retrospective linear regression. [Discuss] 💬

chart for Endpoint Moving Average (EPMA)

// C# usage syntax
IEnumerable<EpmaResult> results =
  quotes.GetEpma(lookbackPeriods);

Parameters

lookbackPeriods int - Number of periods (N) in the moving average. Must be greater than 0.

Historical quotes requirements

You must have at least N periods of quotes to cover the warmup periods.

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

Response

IEnumerable<EpmaResult>

EpmaResult

Date DateTime - Date from evaluated TQuote

Epma double - Endpoint moving average

Utilities

See Utilities and helpers for more information.

Chaining

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

// example
var results = quotes
    .Use(CandlePart.HL2)
    .GetEpma(..);

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

// example
var results = quotes
    .GetEpma(..)
    .GetRsi(..);