Quote:
|
Originally Posted by hoosain
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
PHP Code:
OrderSend(Symbol(),OP_SELL,Lots,Bid,2,SL,TP,"",Magic,0,Orange);
change to this
PHP Code:
OrderSend(Symbol(),OP_SELL,Lots,Bid,2,SL,TP,"",Magic,0);