View Single Post
  #2 (permalink)  
Old 08-01-2006, 06:36 PM
elihayun's Avatar
elihayun elihayun is offline
Senior Member
 
Join Date: Jan 2006
Posts: 397
elihayun is on a distinguished road
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); 
Reply With Quote