Closed c0sm1cdus7 closed 2 years ago
binance.futuresOrder('BUY', 'BTCUSDT', 0.001,41000, { type: 'STOP',side:'BUY',positionSide:'SHORT'})
/*
side : LIMIT
MARKET
STOP
STOP_MARKET
TAKE_PROFIT
TAKE_PROFIT_MARKET
TRAILING_STOP_MARKET
*/
I am trying to place a new SHORT trade on the futures market, and place a stop loss immediatly after.
Lets say the current price of
BTCUSDT
is40.000
I place my inital SELL order at
40.000
like this:Now I want to place a STOP LOSS order at
41.000
, so I run:Im expecting that when the price rises from 40.000 to 41.000 the BUY order would trigger. However I get the following message:
How do I place a stop loss for a SHORT?