stopLossPrice method

C stopLossPrice(
  1. double stopLossPrice
)

Implementation

C stopLossPrice(double stopLossPrice) {
  return patchState(MatexBaseCoreState(
    stopLossPrice: sanitizeDouble(stopLossPrice),
    stopLossPips: 0.0,
    stopLossAmount: 0.0,
  ));
}