Is there a way to update a current future position take-profit/stop-loss?

I read the USD-M Futures API docs and I didn’t find a way to update the current position take-profit/stop-loss. Is there a way to do that? Thanks.

for the current open position, it’s able to adjust isolated margin or reduce the position.

Not what I looking for. Is there any chance it will be implemented?

Update in what part exactly? you should be able to create a new order with same parameters to change the position’s quantity and entry price.

When a position filled, I can modify the Take-Profit/Stop-Loss of an “existing position”. Of course I can create a new order but that is not what I want.
I expected an API that takes ORDER_ID as input to modify the order.

Same problem here, please keep us posted if you found the solution
Thanks!

If you have an open position and you want to set a SL on it.

Example:
Нou have LONG position on ADAUSDT with price 1.21
And you want close all position if the price drops below 1.2075

You can use this order params to set SL on position
{
symbol: ‘ADAUSDT’,
side: ‘SELL’,
type: ‘STOP_MARKET’,
closePosition: true,
stopPrice: 1.2075,
}

as you can see, no “quantity” field and “closePosition = true” . This is very inportant. So it is necessary that the order closes our entire position