getSeries method

  1. @override
Series getSeries(
  1. IndicatorInput indicatorInput
)
override

Creates indicator Series for the given indicatorInput.

Implementation

@override
Series getSeries(IndicatorInput indicatorInput) => AlligatorSeries(
  indicatorInput,
  alligatorOptions: AlligatorOptions(
    jawPeriod: jawPeriod,
    teethPeriod: teethPeriod,
    lipsPeriod: lipsPeriod,
    showLines: showLines,
    showFractal: showFractal,
    jawOffset: jawOffset,
    teethOffset: teethOffset,
    lipsOffset: lipsOffset,
    jawLineStyle: jawLineStyle,
    teethLineStyle: teethLineStyle,
    lipsLineStyle: lipsLineStyle,
    showLastIndicator: showLastIndicator,
  ),
);