Hi Guys,
This may be a really dumb question, but I am still new at programming.
I have my ea write everything into a log file - for each condition that is met, I log it, so I can tell what is happening, what the ea is doing in the market.
But I get tired of looking it up. It would be much easier to see everything just happening on the left side of the screen. The problem is that I think MT4 only allows one comment to show up.
For example if I make a comment like:
Comment("Magic # = ", DoubleToStr(MagicNumber, 0));
And later I have a condition met like:
if(ema1>ema2){
Comment("\n ema1>ema2");
}
Only one comment will show up on the left, not both. I would like ALL my comments to show up, so I can read it on the left just as easy as reading it in the log file.
Is there any way to do this?
Thanks for the help
This may be a really dumb question, but I am still new at programming.
I have my ea write everything into a log file - for each condition that is met, I log it, so I can tell what is happening, what the ea is doing in the market.
But I get tired of looking it up. It would be much easier to see everything just happening on the left side of the screen. The problem is that I think MT4 only allows one comment to show up.
For example if I make a comment like:
Comment("Magic # = ", DoubleToStr(MagicNumber, 0));
And later I have a condition met like:
if(ema1>ema2){
Comment("\n ema1>ema2");
}
Only one comment will show up on the left, not both. I would like ALL my comments to show up, so I can read it on the left just as easy as reading it in the log file.
Is there any way to do this?
Thanks for the help