BollingerBandWidthIndicator<T extends IndicatorResult> constructor
BollingerBandWidthIndicator<T extends IndicatorResult> (
- BollingerBandsUpperIndicator<
T> bbu, - CachedIndicator<
T> bbm, - BollingerBandsLowerIndicator<
T> bbl, { - double hundred = 100,
Initializes.
bbu the upper band Indicator.
bbm the middle band Indicator. Typically an SMAIndicator is used.
bbl the lower band Indicator.
Implementation
BollingerBandWidthIndicator(
this.bbu,
this.bbm,
this.bbl, {
this.hundred = 100,
}) : super(bbm.input);