Hello,
is it please possible to specify quoteOrderQty
for a STOP_LOSS
order?
If I see it correctly, a MARKET
order of pair e.g. BTCUSDT
can be created in four ways:
- Specify amount of BTC to buy (using
quantity
+side
) - Specify amount of BTC to sell (using
quantity
+side
) - Specify amount of USDT to use to buy BTC (using
quoteOrderQty
+side
) - Specify amount of USDT to receive when selling BTC (using
quoteOrderQty
+side
)
However, when placing a STOP_LOSS
order, there are only 2 ways:
- Specify amount of BTC to sell when price decreases to
stopPrice
(usingquantity
+side
) - Specify amount of BTC to buy when price increases to
stopPrice
(usingquantity
+side
)
The second option for STOP_LOSS
might be problematic. Let’s assume that I want to spend maximum of 10 USDT
when price of BTC will be equal or above to stopPrice
. So, it is possible somehow?
Thank you very much.