外汇平台广告

镇店之宝:Waka Waka外汇EA最新版本网格交易ea,5年实盘!

MT4指标:NonLagZigZag_v2源码

2018-03-08 14:07   来源: 未知    本篇文章有415字,看完大约需要1分钟的时间   
这是一款改编ZigZag未来MT4指标
 
MT4指标:NonLagZigZag_v2源码.gif
 
//+------------------------------------------------------------------+
//|                                              NonLagZigZag_v2.mq4 |
//|                                Copyright ?2006, TrendLaboratory |
//|            http://finance.groups.yahoo.com/group/TrendLaboratory |
//|                                   E-mail: igorad2003@yahoo.co.uk |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2006, TrendLaboratory"
#property link      "http://finance.groups.yahoo.com/group/TrendLaboratory"
//----
#property indicator_chart_window
#property indicator_buffers 1
//----
#property indicator_color1 Gold
#property indicator_width1 2
//---- input parameters
extern int     Price      =0;  //Apply to Price(0-Close;1-Open;2-High;3-Low;4-Median price;5-Typical price;6-Weighted Close) 
extern int     Length      =100;  //Period of NonLagMA
extern double  PctFilter  =2;  //Dynamic filter in decimals
//----
double ZZBuffer[];
double MABuffer[];
double trend[];
double Del[];
double AvgDel[];
//----
int    ilow, ihigh, nlow, nhigh, prevnhigh,prevnlow, BarsBack;
double alfa[];
datetime lotime,hitime;
int    i, Phase, Len, Cycle=4, Back=0;
double Coeff, beta, t, Sum, Weight, g;
double pi=3.1415926535;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
  int init()
  {
   IndicatorBuffers(5);
   SetIndexStyle(0,DRAW_SECTION);
   SetIndexBuffer(0,ZZBuffer);
   SetIndexBuffer(1,MABuffer);
   SetIndexBuffer(2,trend);
   SetIndexBuffer(3,Del);
   SetIndexBuffer(4,AvgDel);
   string short_name;
//---- indicator line
   IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));
//---- name for DataWindow and indicator subwindow label
   short_name="NonLagZigZag("+Length+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,"NonLagZigZag");
//----
   SetIndexEmptyValue(0,0.0);
   SetIndexDrawBegin(0,Length*Cycle+Length);
//----
   Coeff= 3*pi;
   Phase=Length-1;
   Len=Length*Cycle + Phase;
   ArrayResize(alfa,Len);
   Weight=0;
   for(i=0;i<Len-1;i++)
     {
      if (i<=Phase-1) t=1.0*i/(Phase-1);
      else t=1.0 + (i-Phase+1)*(2.0*Cycle-1.0)/(Cycle*Length-1.0);
      beta=MathCos(pi*t);
      g=1.0/(Coeff*t+1);
      if (t<=0.5)g=1;
      alfa[i]=g * beta;
      Weight+=alfa[i];
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| NonLagZigZag_v2                                                  |
//+------------------------------------------------------------------+
int start()
  {
   int    i,shift,limit;
   double price,smin,smax;
   int counted_bars = IndicatorCounted();
   if(counted_bars < 0)  return(-1); 
   if(counted_bars > 0)   counted_bars--;
   limit = Bars - counted_bars;
   if(counted_bars==0) limit-=1+1+MathMax(Len,Length);
 
   for(shift=limit;shift>=0;shift--)
     {
      Sum=0;
      for(i=0;i<=Len-1;i++)
        {
         price=iMA(NULL,0,1,0,3,Price,i+shift);
         Sum+=alfa[i]*price;
        }
      if (Weight > 0) MABuffer[shift]=Sum/Weight;
      Del[shift]=MathAbs(MABuffer[shift] - MABuffer[shift+1]);
//----
      double sumdel=0;
      for(i=0;i<=Length-1;i++) sumdel+=Del[shift+i];
      AvgDel[shift]=sumdel/Length;
//----
      double sumpow=0;
      for(i=0;i<=Length-1;i++) sumpow+=MathPow(Del[shift+i]-AvgDel[shift+i],2);
      double StdDev=MathSqrt(sumpow/Length);
      double Filter=PctFilter * StdDev;
      if (Filter < Point) Filter=Point;
      if(MathAbs(MABuffer[shift]-MABuffer[shift+1]) < Filter)MABuffer[shift]=MABuffer[shift+1];
//----
      trend[shift]=trend[shift+1];
      if (MABuffer[shift]-MABuffer[shift+1] > Filter) trend[shift]= 1;
      if (MABuffer[shift+1]-MABuffer[shift] > Filter) trend[shift]=-1;
      if(trend[shift]>0)
        {
         if(trend[shift]!=trend[shift+1])
           {
            ilow=LowestBar(iBarShift(NULL,0,hitime,FALSE)-shift,shift);
            lotime=Time[ilow];
            ZZBuffer[ilow]=Low[ilow];
           }
         else
            if (shift==0)
              {
               int hilen=iBarShift(NULL,0,lotime,FALSE);
               nhigh=HighestBar(hilen,0);
               ZZBuffer[nhigh]=High[nhigh];
               if (nhigh== 0) for(i=hilen-1;i>=1;i--) ZZBuffer[i]=0;
               if (nhigh > 0) for(i=nhigh-1;i>=0;i--) ZZBuffer[i]=0;
              }
        }
      if (trend[shift]<0)
        {
         if(trend[shift]!=trend[shift+1])
           {
            ihigh=HighestBar(iBarShift(NULL,0,lotime,FALSE)-shift,shift);
            hitime=Time[ihigh];
            ZZBuffer[ihigh]=High[ihigh];
           }
         else
            if (shift==0)
              {
               int lolen=iBarShift(NULL,0,hitime,FALSE);
               nlow=LowestBar(lolen,0);
               ZZBuffer[nlow]=Low[nlow];
               if (nlow==0) for(i=lolen-1;i>=1;i--) ZZBuffer[i]=0;
               if (nlow >0) for(i=nlow-1;i>=0;i--) ZZBuffer[i]=0;
              }
        }
     }
   return(0);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int LowestBar(int len,int k)
  {
   double min=10000000;
   int lobar;
//----
   for(int i=k+len-1;i>=k;i--)
      if(Low[i] < min) {min=Low[i]; lobar=i;}
   if(len<=0) lobar=k;
   return(lobar);
  }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int HighestBar(int len,int k)
  {
   double max=-10000000;
   int hibar;
   for(int i=k+len-1;i>=k;i--)
      if(High[i] > max) {max=High[i]; hibar=i;}
   if(len<=0) hibar=k;
   return(hibar);
  }
//+------------------------------------------------------------------+

外汇小贴士:

外汇掉期的特点及其对市场的影响.
外汇掉期的功能特点:客户委托银行购买A种货币,卖出B种货币,确定未来另一个工作日的反向操作,卖出相同金额的A种货币,买入B种货币。客户做远期外汇交易后,由于需要提前交付,或由于资金不到位或其他原因,不能按时交付,需要延长,可以通过叙利亚外汇互换交易调整原交易的交割时间。
 
互换外汇交易可视为由两笔金额相同的外汇交易、不同的利率日和交易的相反方向组成,因此,互换外汇交易在汇率日期前后有两个利息日和两个商定的汇率水平。在互换外汇交易中,客户和银行按照商定的汇率水平将一种货币兑换成另一种货币,在第一开始日交付资金,以另一种商定的汇率按相反的方向兑换上述两种货币,并在第二开始日期交付资金。最常见的互换是将即期交易与远期交易结合起来,这相当于在即期卖出A种货币和即期买入B货币的同时,以相反的方向买进远期A种货币和远期B型货币。
关键词:
责任编辑:618wh
  
来源:未知
   

相关文章

炒外汇开户
炒外汇ea大师
炒外汇富拓开户

外汇指标一区

镇店之宝 | 最新MT4指标 | 支撑阻力 | 通道指标 | 震荡指标 | 强弱指标 | 波段指标 | 均线指标 | 箭头指标 | 背离指标 | 分形指标 | 成交量指标 | 抛物线指标 | MT4脚本 | 跟单 | 统计 | 面板 | 风控 | 环境/历史 | 没有未来函数 | 指标源码库 |

外汇指标二区

热门MT4指标 | 布林带 | MA指标 | KDJ指标 | RSI指标 | MACD指标 | CCI指标 | zigzag指标 | ADX指标 | ATR指标 | HMA均线 | 斐波那契 | 最新交易系统 | VIP交易系统 | 热门交易系统 | 外汇1/5分钟系统 | 外汇15/30分钟系统 | 外汇1/4小时系统 | 外汇全时段系统 | 外汇日线图系统 | 外汇MT5指标 | MT5指标模版 | 外汇MT5脚本 |

MQL5市场区

剥头皮EA | 趋势型EA | 网格型EA | 马丁型EA | 多货币EA |

推荐EA精品区

精品外汇EA | 最新EA | 热卖EA | 趋势型EA | 对冲型EA | 剥头皮EA | 马丁型EA | 网格型EA | 多货币EA | 黄金原油EA |

外汇EA普通区

趋势型EA | 马丁型EA | 剥头皮EA | 网格型EA | 对冲型EA | 震荡型EA | MT5外汇EA |
分享本站到

免费热线:1500-0043-492