You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every instrument enforces a minimum price increment (`tickSize`) and minimum quantity increment (`lotSize`). Submitting a price or quantity that isn't a multiple of these will return a `400 Invalid price` or `400 Invalid quantity` error.
Prices must be multiples of `tickSize`; quantities must be multiples of `lotSize`. Fetch these from `bitmex market instrument --symbol <SYMBOL> -o json | jq '.[0] | {tickSize, lotSize}'` before placing. Misaligned values return `400 Invalid price` or `400 Invalid quantity`.
`--validate` is a local dry-run that prints the constructed order JSON without submitting to the exchange. It does not perform server-side price/qty validation — alignment must be correct before live submission.
0 commit comments