Rolling Chaikin Oscillator (CO).
Builds AD for each window from a running previous AD seed. Returns [oscillatorValue, lastAD] per window.
High prices.
Low prices.
Close prices.
Volumes.
Short AD period.
Long AD period.
Previous AD seed (0.0 if none).
Model for short AD average.
Model for long AD average.
Array of [oscValue, lastAD] per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/chaikin-oscillator/ Explanation and interactive playground
Rolling Chande Momentum Oscillator (CMO).
Prices.
Window length.
CMO values per window (range [-100, 100]).
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/chande-momentum-oscillator/ Explanation and interactive playground
Rolling Commodity Channel Index (CCI).
Prices.
Central model.
Deviation model.
Scale factor (normally 0.015).
Window length.
CCI per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/commodity-channel-index/ Explanation and interactive playground
Rolling MACD line (short vs long window).
Prices.
Short window length (must be <= longPeriod).
Model for short average.
Long window length (<= prices.length).
Model for long average.
MACD values per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/macd/ Explanation and interactive playground
Rolling McGinley Dynamic CCI.
Seeds the first window with previousMcginleyDynamic, then chains each
window's McGinley into the next.
Prices.
Previous McGinley (0.0 if none).
Deviation model.
Scale factor (normally 0.015).
Window length.
Array of [cci, mcginley] per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/mcginley-dynamic-commodity-channel-index/ Explanation and interactive playground
Rolling McGinley Dynamic MACD.
Chains short/long McGinley values across windows:
Prices.
Short window length.
Previous short McGinley (0.0 if none).
Long window length.
Previous long McGinley (0.0 if none).
Array of [macd, shortMcginley, longMcginley].
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/mcginley-dynamic-macd/ Explanation and interactive playground
Rolling Money Flow Index (MFI).
Prices.
Volumes (same length).
Window length.
MFI values per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/money-flow-index/ Explanation and interactive playground
Rolling On-Balance Volume (OBV).
Prices (length >= 1).
Volumes (same length).
Previous OBV seed (0 if none).
OBV values per step (length = prices.length - 1).
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/on-balance-volume/ Explanation and interactive playground
Rolling Percentage Price Oscillator (PPO) (%).
Prices.
Short window length.
Long window length.
Central model for both averages.
PPO values per window (%).
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/percentage-price-oscillator/ Explanation and interactive playground
Pairwise Rate of Change across the series.
Prices (length >= 1).
Array of successive RoC values (length = prices.length - 1).
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/rate-of-change/ Explanation and interactive playground
Rolling RSI.
Slice of prices.
Central model for gains/losses aggregation.
Window length.
RSI per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/rsi/ Explanation and interactive playground
Rolling MACD signal line.
MACD values.
Central model.
Window length.
Signal values per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/macd/ Explanation and interactive playground
Rolling Slowest Stochastic (smoothing of Slow Stochastic).
Slice of slow stochastic values.
Central model.
Window length.
Slowest stochastic per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/slow-stochastic-oscillator/ Explanation and interactive playground
Rolling Slow Stochastic (smoothing of Stochastic Oscillator).
Slice of stochastic values.
Central model.
Window length.
Slow stochastic per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/slow-stochastic-oscillator/ Explanation and interactive playground
Rolling Stochastic Oscillator.
Slice of prices.
Window length.
%K per window in [0, 100].
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/stochastic-oscillator/ Explanation and interactive playground
Rolling Williams %R.
High prices.
Low prices.
Close prices.
Window length.
%R values per window.
https://tech.centaurresearchtechnologies.com/indicators/momentum-indicators/williams-percent-r/ Explanation and interactive playground
Bulk/rolling momentum indicators.
General:
period(orlongPeriodfor two-window indicators).