Filter failure: LOT_SIZE

I’m trying to do a MARKET SELL Order with following parameters:

bRest.testOrder({
symbol: BNBUSDT,
side: SELL,
type: ‘MARKET’,
quantity: 0.00007000
})

Filter are:
{ filterType: ‘LOT_SIZE’,
minQty: ‘0.00001000’,
maxQty: ‘900000.00000000’,
stepSize: ‘0.00001000’ }

And I get Filter failure: LOT_SIZE. (on testNet and ProductionNet)

Someone can tell me what’s going on?

Someone has code to pass all filters on MARKET ORDER, please?

Thank you very much!!!

If you try to GET /api/v3/exchangeInfo, you’d find below information under BNBUSDT:
{
“filterType”: “LOT_SIZE”,
“minQty”: “0.00100000”,
“maxQty”: “900000.00000000”,
stepSize”: “0.00100000”
},

So the step size should be 0.001 and your quantity 0.00007 would fail on this filter

Thank you very much, I was using other symbol filter!