Search code examples
c#apiasync-awaitcryptocurrencybinance-api-client

Binance API entering order gives me MIN_NOTIONAL


I'm currently using an open source Binance API from nuget, called Binance.Net from JKrof https://github.com/JKorf/Binance.Net

I already have my API and keys in place, but when i tried to enter either Market or Limit order, using this....

// Market Order
var dd = await client.SpotApi.Trading.PlaceOrderAsync(order.symbol, side, SpotOrderType.Market, order.orderqty, null, order.clordid);

// Limit Order
var dd = await client.SpotApi.Trading.PlaceOrderAsync(order.symbol, side, SpotOrderType.Limit, order.orderqty, null, order.clordid, order.price, TimeInForce.GoodTillCanceled);

the Response is i get FAIL, and this is what it reads.....

   "ResponseTime":"00:00:00.0633524",
   "OriginalData":"{\"code\":-1013,\"msg\":\"Filter failure: MIN_NOTIONAL\"}",
   "Error":{
      "Code":-1013,
      "Message":"Filter failure: MIN_NOTIONAL"
   },
   "Success":false

I have no idea what this means, it seems the parameter i used is correct, What can i do to not use filter or anything. I dont understand even a market order i get this error.

Can anyone help?


Solution

  • ok, my qty is too low. i just needed to increase the qty. thanks