Problems with Comment()

 

I am having problems using Comment(). It works fine in testing but when I attach to chart comments do not display.

Below is very simple EA that just shows "this is a test"

Am i missing a setting in MT4 to allow for comments??

//+------------------------------------------------------------------+
//|                                               NewTestAdvisor.mq4 |
//|                      Copyright © 2011, MetaQuotes Software Corp. |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2011, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net"

//+------------------------------------------------------------------+
//| expert initialization function                                   |
//+------------------------------------------------------------------+
int init()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert deinitialization function                                 |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
//----
   Comment("this is a test"); // for some reason only will show in back testing
//----
   return(0);
  }
//+------------------------------------------------------------------+
 

ARe you trying to do this "right now" when the markets are closed? Because if you are then of course the comment won't show, there are no ticks being received by the chart as needed to trigger start().