Chande Momentum Oscillator (CMO)

Created by Tushar Chande, the Chande Momentum Oscillator is a weighted percent of higher prices over a lookback window. [Discuss] 💬

chart for Chande Momentum Oscillator (CMO)

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

Parameters

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

Historical quotes requirements

You must have at least N+1 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<CmoResult>

CmoResult

Date DateTime - Date from evaluated TQuote

Cmo double - Chande Momentum Oscillator

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)
    .GetCmo(..);

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

// example
var results = quotes
    .GetCmo(..)
    .GetEma(..);