Webhook Take Profit Stop Loss

Hi.

I’ve managed to integrate webhook to place order. Order is created but the take profit and stop loss is not set in Binance. Can advice what keyword should be use to take profit and stop loss?

Thank you.

{
“symbol”:“{{ticker}}”,
“side”:“buy”,
“qty”:“0.001”,
“price”:“market”,
“trigger_time”:“{{timenow}}”,
“strategy_id”:“abc”,
“take_profit”:{
“price_percentage”:2,
“position_percentage”:100
},
“stop_loss”:{
“stop_percentage”:1,
“cool_down_amount”:1,
“cool_down_time_frame”:“minute”
}
}

Hey,
Take a look at this documentation for guidance on placing a new order or trade: Binance API Documentation

Hi. I tried following the documentation but didn’t work. Can I know maybe this is for API call and not webhook?

up up