客服热线:18391752892

求帮主帮忙用ZigZag指标求出顶点值【已经解决】

   日期:2019-01-12     浏览:351    
马上注册,结交更多好友,下载更多资源

您需要 登录 才可以下载或查看,没有帐号?注册 指标源码如下:
 //+------------------------------------------------------------------+
 //|                                      Zigzag.mq4 |
 //|           Copyright ?2005-2007, metaQuotes Software Corp. |
 //|                           http://www.metaquotes.net/ |
 //+------------------------------------------------------------------+
 #property copyright Copyright ?2007, metaQuotes Software Corp.
 #property link      http://www.metaquotes.net/
 
 #property indicator_chart_window
 #property indicator_buffers 1
 #property indicator_color1 Red
 //---- 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; // recounting's depth
 bool downloadhistory=false;
 //+------------------------------------------------------------------+
 //| 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 start()
    {
   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=0; shift--)
      {
     val=Low[iLowest(NULL,0,MODE_LOW,ExtDepth,shift)];
     if(val==lastlow) val=0.0;
     else
        {
       lastlow=val;
       if((Low[shift]-val) (ExtDeviation*Point)) val=0.0;
       else
          {
         for(back=1; backval)) LowMapBuffer[shift+back]=0.0;
            }
          }
        }
     if (Low[shift]==val) LowMapBuffer[shift]=val; else LowMapBuffer[shift]=0.0;
     //--- high
     val=High[iHighest(NULL,0,MODE_HIGH,ExtDepth,shift)];
     if(val==lasthigh) val=0.0;
     else
        {
       lasthigh=val;
       if((val-High[shift]) (ExtDeviation*Point)) val=0.0;
       else
          {
         for(back=1; back
你好!我想编写一平仓条件,可一直不成功。当下单成功后赢利超过7点之后赢利又小于6点平仓。就这个平仓条件能辛苦帮我写一下吗?这样能保住赢利不会变亏损。先行谢谢了!!!~~~ 
外汇交易有很大的风险性,本站所有资源均来自网络,请选择使用,如若出现亏损,本站不承担任何责任!


特别提示:本信息由相关企业自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


0相关评论
相关行情
推荐行情
点击排行