Binance says it will adjust the minimum price increment (tick size) for several USDⓈ-M perpetual contracts starting Dec 22 at 07:00 UTC (09:00 Bucharest), while keeping overall USDⓈ-M futures trading operations unchanged, according to a verified announcement on tick size updates.
The exchange also notes that tick size changes will be reflected via API, and that orders placed before the update will continue matching under the original tick size rather than being auto-modified.
The update covers the following USDⓈ-M perpetuals (before and after tick size):
| Trading Pair | Before | After |
|---|---|---|
| USELESSUSDT | 0.0001 | 0.00001 |
| NOMUSDT | 0.00001 | 0.000001 |
| EVAAUSDT | 0.001 | 0.0001 |
| SLPUSDT | 0.000001 | 0.0000001 |
| WAXPUSDT | 0.00001 | 0.000001 |
| POWRUSDT | 0.0001 | 0.00001 |
| SCRUSDT | 0.0001 | 0.00001 |
| SUSDT | 0.0001 | 0.00001 |
| ATUSDT | 0.0001 | 0.00001 |
| VTHOUSDT | 0.000001 | 0.0000001 |
| VANRYUSDT | 0.00001 | 0.000001 |
| STABLEUSDT | 0.00001 | 0.000001 |
These values are listed in the official notice.
Tick size is the smallest allowed price step. When it gets smaller, traders can quote prices more finely. That tends to:
There’s also an automation angle. If your system still tries to place prices that don’t conform to the new tick size, orders can be rejected by the exchange’s price filter logic. Binance’s own API education materials explain how tickSize is enforced via PRICE_FILTER and how violations can show up as filter failures.
For API users, the practical move is to refresh the symbol specs from the futures Exchange Information endpoint (GET /fapi/v1/exchangeInfo) right before the change window, then rebuild your local tick-size map.
If you do any of the following, review your step logic:
A good rule: always quantize price to the current tick size (floor/round depending on your strategy), not a hard-coded decimal.
Because Binance says pre-existing orders keep matching under the old tick size after the update, you can temporarily see a mixed book where older orders sit on “legacy” increments while new orders use the updated increments. That can distort microstructure signals (like level clustering) for a while.
Binance publishes symbol-level contract specifications (min price movement, precision, caps) in its USDⓈ-M trading rules page. If you’re tuning strategy constraints per pair, this is where mismatches often begin.
This is a small parameter change with outsized impact for active traders: Binance Futures is tightening tick sizes across a batch of USDT perpetuals on Dec 22, which can shift spreads, fills, and order book shape.
If you trade these contracts with automation, treat it like a deploy event. Refresh symbol rules from the exchangeInfo endpoint, update rounding and grid steps, and expect short-lived microstructure weirdness as old-tick orders coexist with the new tick regime.
The post Binance Futures Tightens Tick Sizes on USDT Perps, Bot Traders Take Note appeared first on Crypto Adventure.