-1

I am using market buy and after that stop limit order. But sometimes stop limit order doesnt work and price keep going down. stop limit order parameters;
1: coin name
2: quantity
3: reduceOnly: true
4: price: entryPrice * 0.98
5: stopPrice: entryPrice * 0.99
6: type: STOP
7: timeInForce: 'GTC'

For example my last MARKET BUY json informations;

{
orderId: -,
symbol: 'BLZUSDT',
status: 'FILLED',
clientOrderId: '-',
price: '0.00000',
avgPrice: '0.11443',
origQty: '874',
executedQty: '874',
cumQuote: '100.01182',
timeInForce: 'GTC',
type: 'MARKET',
reduceOnly: false,
closePosition: false,
side: 'BUY',
positionSide: 'BOTH',
stopPrice: '0.00000',
workingType: 'CONTRACT_PRICE',
priceProtect: false,
origType: 'MARKET',
time: -,
updateTime: -
}

and STOP LIMIT ORDER json informations;

{
orderId: -,
symbol: 'BLZUSDT',
status: 'NEW',
clientOrderId: '-',
price: '0.11417',
avgPrice: '0.00',
executedQty: '0',
cumQty: '0',
cumQuote: '0.00000',
timeInForce: 'GTC',
type: 'STOP',
reduceOnly: true,
closePosition: false,
side: 'SELL',
positionSide: 'BOTH',
stopPrice: '0.11417',
workingType: 'CONTRACT_PRICE',
priceProtect: false,
origType: 'STOP',
updateTime: -
}

What can be the problem that cause to not sell. How to solve it?
NOTE: entryPrice*quantity=total amount, is generally around 200usd

tester01
  • 116
  • 2
  • 10
  • Please visit [help], take [tour] to see what and [ask]. Do some research, search for related topics on SO; if you get stuck, post a [mcve] of your attempt, noting input and expected output, preferably in a [Stacksnippet](https://blog.stackoverflow.com/2014/09/introducing-runnable-javascript-css-and-html-code-snippets/) – mplungjan Aug 27 '23 at 08:26

0 Answers0