Подправте индикатор плз

 
что то не работает как надо.
Индикатор простой.
Необходимо, чтоб после того как сформировался фрактал (iFractals) отправлялась почта с извещением.
Код прикладываю.
//+------------------------------------------------------------------+
//|                                                 iFractalMail.mq4 |
//|                      Copyright © 2006, MetaQuotes Software Corp. |
//|                                        https://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, MetaQuotes Software Corp."
#property link      "https://www.metaquotes.net/"
#property indicator_color1 Blue
#property indicator_color2 Red
#property indicator_buffers 2
 
double ExtSignal1[];
double ExtSignal2[];
 
datetime dtLastBar;
 
#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
 
   SetIndexArrow(0,225);
   SetIndexStyle(0,DRAW_ARROW);
   SetIndexBuffer(0,ExtSignal1);
   
   SetIndexArrow(1,226);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexBuffer(1,ExtSignal2);
  
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int limit;
   int    counted_bars=IndicatorCounted();
//----
//---- check for possible errors
   if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
   if(counted_bars>0) counted_bars--;
   limit=Bars-counted_bars;
//---- main loop
   for(int i=0; i<limit; i++)
     {
      //---- ma_shift set to 0 because SetIndexShift called abowe
      ExtSignal1[i]=iFractals(NULL,0,MODE_UPPER,i);
      ExtSignal2[i]=iFractals(NULL,0,MODE_LOWER,i);
      
if(i==0 && Time[0]>dtLastBar && (ExtSignal1[i]!=0 || ExtSignal2[i]!=0))
      {
         Print("We have a fractal");
         
         if(ExtSignal1[i]!=0)
         {
            Print("Sending mail");
            SendMail("Fractal UP!",Symbol()+", "+TimeToStr(CurTime())+", "+Close[0]);
            Print("Result: "+GetLastError());
         }
         else if(ExtSignal2[i]!=0)
         {
            Print("Sending mail");
            SendMail("Fractal DOWN!",Symbol()+", "+TimeToStr(CurTime())+", "+Close[0]);
            Print("Result: "+GetLastError());
         }
         
         dtLastBar = Time[0];
      }
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+
 
Фракталов на 0-м баре не бывает.
 

промоги плз подправить, а то я не селен в MQL, собирал из кусочков :)

 
Спасиб. Получилось !