I am developing my own crypto trading bot and I have a technical question about how to create orders with Iceberg.
The clearer way is maybe to give you an example:
Imagine I have 101 coins of XXX → Qty =101 and Binance API says on that coin :
- minQty = 10
- stepSize = 1
- icebergParts = 10
What happens if I put icebergQty = 11 ?
Will I get an error because the 10th part will not match minQty? (9 X 11) + (1 X 2) ; 2 < minQty
Or is it smart enough to do (1 x 11) + (9 X 10) ?
thx !