diff --git a/src/ExchangeSharp/API/Exchanges/MEXC/ExchangeMEXCAPI.cs b/src/ExchangeSharp/API/Exchanges/MEXC/ExchangeMEXCAPI.cs index c7f6280b..17410d7e 100644 --- a/src/ExchangeSharp/API/Exchanges/MEXC/ExchangeMEXCAPI.cs +++ b/src/ExchangeSharp/API/Exchanges/MEXC/ExchangeMEXCAPI.cs @@ -278,8 +278,7 @@ protected override async Task OnPlaceOrderAsync(ExchangeOrd if (order.OrderType != OrderType.Market) { - decimal orderPrice = await ClampOrderPrice(order.MarketSymbol, order.Price.Value); - payload["price"] = orderPrice; + payload["price"] = order.Price.Value; if (order.IsPostOnly != true) payload["type"] = "LIMIT"; } @@ -474,7 +473,7 @@ await _socket.SendMessageAsync(new WebSocketSubscription } ); } - + protected override Task ProcessRequestAsync( IHttpWebRequest request, Dictionary? payload