Help with Coding Please

 

Hi, How can I make something like "Stoploss" NOT appear on the Inputs screen when loading an EA?

Best regards

 
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

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);
Reason: