View Single Post
  #2 (permalink)  
Old 09-07-2007, 04:44 PM
cja's Avatar
cja cja is online now
Senior Member
 
Join Date: Apr 2006
Posts: 595
cja is on a distinguished road
Quote:
Originally Posted by matrixebiz View Post
Hello, I run an EA and it puts a Comment at the left but another Comment also pops in and out on the same line. What code do I use to move one of the comments down a bit?
Thanks
Try this - The code highlighted in Red shifts each line down you can also add 2 lots of the code and the line will shift down twice the distance or more if required


Comment("" +"\n"+"4 Hour Candle Close Data" +"\n"
+"Close Prev 4Hour "+TimeToStr(Time4hr)+" @ "+DoubleToStr(Candle4hr,Digits) +"\n"
+"Time of NEXT 4Hour Close "+TimeToStr(NextTime4hr) +"\n"
+"Broker Time "+TimeToStr(BrokerTime)+" @ "+DoubleToStr(DataPrice,Digits)+"\n"
+"4 Hour CountDown "+TimeToStr(CountDown,Digits));

Last edited by cja; 09-07-2007 at 04:47 PM.
Reply With Quote