Quote:
Originally Posted by matrixebiz
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));