EA initialization fails?

 

There is a problem I experience when the EA initialized it should print but it doesn't always print.

Just When you compile it print but open EA inputs and click OK and it should print from initialization.

When you open inputs of the EA and click OK--print doesn't happen from initialization in experts tab?

#property version   "1.00"
int OnInit()
  {
   Print("Initialized !!");
   return(INIT_SUCCEEDED);
  }
void OnDeinit(const int reason)
  {
   
  }
void OnTick()
  {
   
  }
Files:
TESTE.mq4  1 kb
 

If you don't have any inputs in your code it will not re-initialize.

Try adding some inputs.

Reason: