formatIndicator method
Implementation
String formatIndicator(double value, IndicatorType type, {int? period}) {
return indicatorFormatter?.call(value, type, period) ??
value.toStringAsFixed(2);
}
String formatIndicator(double value, IndicatorType type, {int? period}) {
return indicatorFormatter?.call(value, type, period) ??
value.toStringAsFixed(2);
}