SmoothedSlowStochasticIndicator<T extends IndicatorResult> constructor
SmoothedSlowStochasticIndicator<T extends IndicatorResult> (
- SlowStochasticIndicator<
T> slowPercentKStochasticIndicator, { - int period = 3,
Initializes a Fast Stochastic Indicator.
Implementation
SmoothedSlowStochasticIndicator(
SlowStochasticIndicator<T> slowPercentKStochasticIndicator, {
int period = 3,
}) : _smaIndicator =
SMAIndicator<T>(slowPercentKStochasticIndicator, period),
super.fromIndicator(slowPercentKStochasticIndicator);