closePrice method

C closePrice(
  1. double closePrice
)

Implementation

C closePrice(double closePrice) {
  final sanitizedValue = sanitizeDouble(closePrice);

  return patchState(MatexBaseCoreState(closePrice: sanitizedValue));
}