AceStockMetricController constructor

AceStockMetricController({
  1. double? maxScale,
  2. bool useVOLMA = false,
  3. bool useMACD = false,
  4. bool useKdj = false,
  5. bool useAverage = false,
  6. List<int> rsiDays = const [1, 6, 12],
  7. List<int> maDays = const [5, 10, 20, 30],
  8. double pointWidth = 1,
  9. double? pointSpace,
  10. double paddingRight = 0,
  11. void onScrollBoundary(
    1. ScrollBoundary boundary
    )?,
  12. required int maxLength,
})

Implementation

AceStockMetricController({
  super.maxScale,
  this.useVOLMA = false,
  this.useMACD = false,
  this.useKdj = false,
  this.useAverage = false,
  this.rsiDays = const [1, 6, 12],
  this.maDays = const [5, 10, 20, 30],
  super.pointWidth = 1,
  super.pointSpace,
  super.paddingRight = 0,
  super.onScrollBoundary,
  required super.maxLength,
});