Basic easy Expert advisor not working???

 
I'm a beginner, tried many sample expert advisor scripts but all my scripts are stuck in init() not calling start() at all. So I tried a easy stuff to troubleshoot:
int init()
  {
//----
   Comment("inside the init");
//----
   return(0);
  }
int deinit()
  {
//----
   Comment("inside the deinit");
//----
   return(0);
  }
 
int start()
  {
//----
   Comment("inside the start");
   
//----
   return(0);
  }

When Expert is live trading it is stuck in init() with message "inside the init". I've programmed in Java, C++ and MQL II with no problems but can't really see the bug in this code.
Any mq4 experts pls help me !!!
Thanks in Advance
 

You must wait for ticks to come for start, otherwise it looks ok

Reason: