You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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.