We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c0fe4 commit 2f7603aCopy full SHA for 2f7603a
src/ExchangeSharp/API/Exchanges/MEXC/ExchangeMEXCAPI.cs
@@ -278,8 +278,7 @@ protected override async Task<ExchangeOrderResult> OnPlaceOrderAsync(ExchangeOrd
278
279
if (order.OrderType != OrderType.Market)
280
{
281
- decimal orderPrice = await ClampOrderPrice(order.MarketSymbol, order.Price.Value);
282
- payload["price"] = orderPrice;
+ payload["price"] = order.Price.Value;
283
if (order.IsPostOnly != true)
284
payload["type"] = "LIMIT";
285
}
@@ -474,7 +473,7 @@ await _socket.SendMessageAsync(new WebSocketSubscription
474
473
475
);
476
477
-
+
478
protected override Task ProcessRequestAsync(
479
IHttpWebRequest request,
480
Dictionary<string, object>? payload
0 commit comments