MacdIndicator<T, D> constructor

MacdIndicator<T, D>({
  1. bool? isVisible,
  2. String? xAxisName,
  3. String? yAxisName,
  4. String? seriesName,
  5. List<double>? dashArray,
  6. double? animationDuration,
  7. double? animationDelay,
  8. List<T>? dataSource,
  9. ChartValueMapper<T, D>? xValueMapper,
  10. ChartValueMapper<T, num>? closeValueMapper,
  11. String? name,
  12. bool? isVisibleInLegend,
  13. LegendIconType? legendIconType,
  14. String? legendItemText,
  15. Color? signalLineColor,
  16. double? signalLineWidth,
  17. int? period,
  18. int shortPeriod = 12,
  19. int longPeriod = 26,
  20. Color macdLineColor = Colors.orange,
  21. double macdLineWidth = 2,
  22. MacdType macdType = MacdType.both,
  23. Color histogramPositiveColor = Colors.green,
  24. Color histogramNegativeColor = Colors.red,
  25. ChartIndicatorRenderCallback? onRenderDetailsUpdate,
})

Creating an argument constructor of MacdIndicator class.

Implementation

MacdIndicator(
    {bool? isVisible,
    String? xAxisName,
    String? yAxisName,
    String? seriesName,
    List<double>? dashArray,
    double? animationDuration,
    double? animationDelay,
    List<T>? dataSource,
    ChartValueMapper<T, D>? xValueMapper,
    ChartValueMapper<T, num>? closeValueMapper,
    String? name,
    bool? isVisibleInLegend,
    LegendIconType? legendIconType,
    String? legendItemText,
    Color? signalLineColor,
    double? signalLineWidth,
    int? period,
    this.shortPeriod = 12,
    this.longPeriod = 26,
    this.macdLineColor = Colors.orange,
    this.macdLineWidth = 2,
    this.macdType = MacdType.both,
    this.histogramPositiveColor = Colors.green,
    this.histogramNegativeColor = Colors.red,
    ChartIndicatorRenderCallback? onRenderDetailsUpdate})
    : super(
          isVisible: isVisible,
          xAxisName: xAxisName,
          yAxisName: yAxisName,
          seriesName: seriesName,
          dashArray: dashArray,
          animationDuration: animationDuration,
          animationDelay: animationDelay,
          dataSource: dataSource,
          xValueMapper: xValueMapper,
          closeValueMapper: closeValueMapper,
          name: name,
          isVisibleInLegend: isVisibleInLegend,
          legendIconType: legendIconType,
          legendItemText: legendItemText,
          signalLineColor: signalLineColor,
          signalLineWidth: signalLineWidth,
          period: period,
          onRenderDetailsUpdate: onRenderDetailsUpdate);