I am suddenly got this error again "{"code":-1111,"msg":"Precision is over the maximum defined for this asset."}"

The order request looks so:
symbol=SHIBUSDT&side=BUY&type=LIMIT&timeInForce=FOK&price=0.00000853&quantity=1286768.00000000&recvWindow=5000&timestamp=1671382217786

It looks I did all necessary rounding according to PRICE_FILTER. For this instrument tick size is:
“0.00000001”. What wrong with “0.00000853”, or I am missing something?
Quantity is an integer value…
My requests work fine for nearly all the cases, but this on is an exception.

Thank you in advance for your help!

{
  "filterType":"LOT_SIZE",
  "minQty":"1.00",
  "maxQty":"46116860414.00",
  "stepSize":"1.00"
}

Check your quantity (remove decimals)

Decimals are only zeros “1286768.00000000”… But, thanks, I’ll try - may be it matters.

It did really help. I cut the trailing zeros and the error has gone.
Thanks a lot!

2 Likes