entryPrice method

C entryPrice(
  1. double entryPrice
)

Implementation

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

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