Bulk/rolling standard indicators.
Rolling standard Bollinger Bands (SMA center, ±2 StdDev) with a 20-bar window.
Prices. Must be at least length 20.
Array of [lower, middle, upper] for each 20-bar window.
If prices.length < 20.
Rolling EMA.
Prices.
Window length.
EMA per window.
If period > prices.length.
Rolling standard MACD (12/26 EMA, 9 EMA signal). Produces one [macd, signal, histogram] per 34-bar window.
Prices. Must be at least length 34.
Array of [macd, signal, histogram].
If prices.length < 34.
Rolling standard RSI (period 14, Smoothed MA).
Prices. Must be at least length 14.
RSI per 14-bar window.
If prices.length < 14.
Rolling SMA.
SMA per window.
Rolling Smoothed MA.
Smoothed MA per window.
Bulk/rolling standard indicators.