can TRADE_ACTION_PENDING use tp sl when send request?

 
           request = {
                "action":mt5.TRADE_ACTION_PENDING,
                "symbol":symbol,
                "type" : mt5.ORDER_TYPE_BUY_LIMIT,
                "price": float(price),
                "volume": float(ORDER_UNIT),
                "comment":'Test_code',
                "type_filling":mt5.ORDER_FILLING_IOC
            }

i try to create pending order with take profit and stop loss

but like TRADE_ACTION_PENDING no have sl tp in request.

or i can use TRADE_ACTION_SLTP to modify SL TP pending order?

if it's can how Thanks.