CJL 发表于 2019-5-5 19:49:23

请求哪位高手,帮忙把ZiaZag加上突破报警

本帖最后由 CJL 于 2019-5-5 19:52 编辑

//+------------------------------------------------------------------+
//|                                                   ZigZag TP.mq4|
//+------------------------------------------------------------------+
#property copyright ""
#property link      ""

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Yellow
#property indicator_width1 1
//---- indicator parameters
extern int ExtDepth       = 12;
extern int ExtDeviation   =5;
extern int ExtBackstep    =3;
//---- indicator buffers
double ZigzagBuffer[];
double HighMapBuffer[];
double LowMapBuffer[];

int level=3;
bool downloadhistory=false;
double acehigh[];
double high;
double acelow[];
double low;

void PrintText (string text, string objName, double textColor, double row, double column)
{
   int rowHeight = 10;

   ObjectCreate( objName, OBJ_LABEL, 0, 0, 0 );
   ObjectSet( objName, OBJPROP_COLOR, textColor );
   ObjectSet( objName, OBJPROP_CORNER, 3 );
   ObjectSet( objName, OBJPROP_XDISTANCE, column );
   ObjectSet( objName, OBJPROP_YDISTANCE, row*rowHeight);
   ObjectSetText( objName, text, 10, "Terminal" );
}

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
{
   IndicatorBuffers(3);
//---- drawing settings
   SetIndexStyle(0,DRAW_SECTION);
//---- indicator buffers mapping
   SetIndexBuffer(0,ZigzagBuffer);
   SetIndexBuffer(1,HighMapBuffer);
   SetIndexBuffer(2,LowMapBuffer);

   SetIndexEmptyValue(0,0.0);


//---- indicator short name
   IndicatorShortName("ZigZag("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")");
//---- initialization done
   return(0);
}
int deinit()
{
   int i;

   for (i=1;i<=3;i++)
   {
      ObjectDelete("item"+i);
   }
}
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
{

   double vertices;
   double vertexPos;
   int vertexIndex;

    ObjectDelete("high");
    ObjectDelete("low");

   int i, counted_bars = IndicatorCounted();
   int limit,counterZ,whatlookfor;
   int shift,back,lasthighpos,lastlowpos;
   double val,res;
   double curlow,curhigh,lasthigh,lastlow;

   if (counted_bars==0 && downloadhistory) // history was downloaded
   {
      ArrayInitialize(ZigzagBuffer,0.0);
      ArrayInitialize(HighMapBuffer,0.0);
      ArrayInitialize(LowMapBuffer,0.0);
   }
   if (counted_bars==0)
   {
      limit=Bars-ExtDepth;
      downloadhistory=true;
   }
   if (counted_bars>0)
   {
      while (counterZ<level && i<100)
      {
         res=ZigzagBuffer;
         if (res!=0) counterZ++;
         i++;
      }
      i--;
      limit=i;
      if (LowMapBuffer!=0)
      {
         curlow=LowMapBuffer;
         whatlookfor=1;
      }
      else
      {
         curhigh=HighMapBuffer;
         whatlookfor=-1;
      }
      for (i=limit-1;i>=0;i--)
      {
         ZigzagBuffer=0.0;
         LowMapBuffer=0.0;
         HighMapBuffer=0.0;
      }
   }

   for(shift=limit; shift>=0; shift--)
   {
      val=Low;
      if(val==lastlow) val=0.0;
      else
      {
         lastlow=val;
         if((Low-val)>(ExtDeviation*Point)) val=0.0;
         else
         {
            for(back=1; back<=ExtBackstep; back++)
            {
               res=LowMapBuffer;
               if((res!=0)&&(res>val)) LowMapBuffer=0.0;
            }
         }
      }
      if (Low==val) LowMapBuffer=val; else LowMapBuffer=0.0;
      //--- high
      val=High;
      if(val==lasthigh) val=0.0;
      else
      {
         lasthigh=val;
         if((val-High)>(ExtDeviation*Point)) val=0.0;
         else
         {
            for(back=1; back<=ExtBackstep; back++)
            {
               res=HighMapBuffer;
               if((res!=0)&&(res<val)) HighMapBuffer=0.0;
            }
         }
      }
      if (High==val) HighMapBuffer=val; else HighMapBuffer=0.0;
   }

   // final cutting
   if (whatlookfor==0)
   {
      lastlow=0;
      lasthigh=0;
   }
   else
   {
      lastlow=curlow;
      lasthigh=curhigh;
   }
   for (shift=limit;shift>=0;shift--)
   {
      res=0.0;
      switch(whatlookfor)
      {
         case 0: // look for peak or lawn
            if (lastlow==0 && lasthigh==0)
            {
               if (HighMapBuffer!=0)
               {
                  lasthigh=High;
                  lasthighpos=shift;
                  whatlookfor=-1;
                  ZigzagBuffer=lasthigh;
                  res=1;
                  acehigh = lasthigh;
               }
               if (LowMapBuffer!=0)
               {
                  lastlow=Low;
                  lastlowpos=shift;
                  whatlookfor=1;
                  ZigzagBuffer=lastlow;
                  res=1;
                  acelow = lastlow;
               }
            }
             break;
         case 1: // look for peak
            if (LowMapBuffer!=0.0 && LowMapBuffer<lastlow && HighMapBuffer==0.0)
            {
               ZigzagBuffer=0.0;
               lastlowpos=shift;
               lastlow=LowMapBuffer;
               ZigzagBuffer=lastlow;
               res=1;
            }
            if (HighMapBuffer!=0.0 && LowMapBuffer==0.0)
            {
               lasthigh=HighMapBuffer;
               lasthighpos=shift;
               ZigzagBuffer=lasthigh;
               whatlookfor=-1;
               res=1;
            }   
            break;               
         case -1: // look for lawn
            if (HighMapBuffer!=0.0 && HighMapBuffer>lasthigh && LowMapBuffer==0.0)
            {
               ZigzagBuffer=0.0;
               lasthighpos=shift;
               lasthigh=HighMapBuffer;
               ZigzagBuffer=lasthigh;
            }
            if (LowMapBuffer!=0.0 && HighMapBuffer==0.0)
            {
               lastlow=LowMapBuffer;
               lastlowpos=shift;
               ZigzagBuffer=lastlow;
               whatlookfor=1;
            }   
            break;               
         default: return;
      }
   }

   vertexIndex = 0;
   for (i=0;i<Bars;i++)
   {
      if (ZigzagBuffer != 0.0)
      {
         vertices = ZigzagBuffer ;
         vertexPos = i;
         vertexIndex++;
         if (vertexIndex == 10)
         {
            break;
         }
      }
   }

   PrintText (" ZZ = "+DoubleToStr(MathAbs(vertices-vertices)/Point,0)+" pips", "item1", DarkGray, 1, 10);

   if (vertices > vertices )
   {
      high = vertices;
      lasthighpos = vertexPos;
      low = vertices;
      lastlowpos = vertexPos;
   }
   else
   {
      high = vertices;
      lasthighpos = vertexPos;
      low = vertices;
      lastlowpos = vertexPos;
   }

   ObjectCreate("high", OBJ_TREND, 0, Time, high, Time,high);
   ObjectSet("high", OBJPROP_STYLE, STYLE_SOLID);
   ObjectSet("high", OBJPROP_COLOR, Lime);                  
   ObjectSet("high", OBJPROP_WIDTH, 1);
   ObjectSet("high", OBJPROP_RAY, true);
   ObjectSet("high", OBJPROP_BACK,true);

   ObjectCreate("low", OBJ_TREND, 0, Time, low, Time,low);
   ObjectSet("low", OBJPROP_STYLE, STYLE_SOLID);
   ObjectSet("low", OBJPROP_COLOR, Red);                  
   ObjectSet("low", OBJPROP_WIDTH, 1);
   ObjectSet("low", OBJPROP_RAY, true);
   ObjectSet("low", OBJPROP_BACK,true);

   return(0);
}
//+------------------------------------------------------------------+

宗辰 发表于 2020-6-8 22:32:19

学习了,谢谢分享、、、

李华 发表于 2020-7-12 16:16:20

帮你顶下哈!!

不爱不恨 发表于 2020-7-16 13:26:44

帮你顶下哈!!

jhyzjxc123 发表于 2020-7-22 18:04:33

学习了,不错

邪恶的蛋 发表于 2020-8-9 15:09:53

谢谢楼主分享

joyce40998 发表于 2020-8-19 15:46:11

帮你顶下哈!!

村长hys 发表于 2020-9-5 15:34:56

学习了,不错

薛匀回林仰 发表于 2020-11-24 10:26:38

谢谢

成都外汇 发表于 2021-7-24 18:46:42

谢谢
页: [1] 2
查看完整版本: 请求哪位高手,帮忙把ZiaZag加上突破报警