hoosain:
Hi, How can I make something like "Stoploss" NOT appear on the Inputs screen when loading an EA? Best regards
Hi, How can I make something like "Stoploss" NOT appear on the Inputs screen when loading an EA? Best regards
if you have the source you can chage that
Look for line with the word OrderSend, the last parameter is the color. Just remove it and the comma that comes before it
OrderSend(Symbol(),OP_SELL,Lots,Bid,2,SL,TP,"",Magic,0,Orange);[/PHP]
change to this
[PHP]OrderSend(Symbol(),OP_SELL,Lots,Bid,2,SL,TP,"",Magic,0);
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
Hi, How can I make something like "Stoploss" NOT appear on the Inputs screen when loading an EA?
Best regards