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