backtesting bug - my EA behave peculiar - need help from anybody ...

 
Hi,

i have a strange bug:

When trying to run my simple EA on backtesting (with range of date), suddenly i see that my EA is missing many days.
and the most starnge thing is that the programm skipping over some lines code (inside the start() )

i saw it first, when i tried to test a 'real' EA, after searching for the answer (for a week) i saw it happend with a simple EA.
i attached the screen shoots of my terminal.
you can see that i am only printting twice inside my start() and thats all !
in the journal you can see that my program skipping over the first print and it starting after a long delay (two weeks!)

please, if any one have some idea let me know ...
p.s. i am using a new instal of Metatrader4.0 - build 186

my simple code:


#property copyright "Copyright © 2005, Ferman Corp."
#property link      ""


extern double  Lots           =0.1;
extern int     Slippage       =2;

//+------------------------------------------------------------------+
//| INIT()                                                           |
//+------------------------------------------------------------------+
int init()
  {
      Print ("------ Init happened ------- ");  
      return(0);
  }
//+------------------------------------------------------------------+
//| DEINIT()                                                         |
//+------------------------------------------------------------------+
int deinit()
  {
      Print("------ DE-Init happened ------ ");
      return(0);
  }
//+------------------------------------------------------------------+
//| expert start function                                            |
//+------------------------------------------------------------------+
int start()
  {
 
      Print("-----------",TimeToStr(iTime(NULL,PERIOD_H1,0),TIME_DATE|TIME_SECONDS),"-------------");
      Print("open orders = ",OrdersTotal());      
      return(0);
  }
//+------------------------------------------------------------------+



screen shoots:
http://freefilehosting.net/bin/?id=qdvwl6rb
http://freefilehosting.net/bin/?id=qdvwl6nY


Thanks.