老王吧 发表于 2017-12-27 11:43:18

波段指标 super_signals



//+------------------------------------------------------------------+
//|                                                super-signals.mq4 |
//|               Copyright @2006, Nick Bilak, beluckgmail.com |
//+------------------------------------------------------------------+
#property copyright "下载更多外汇EA,外汇指标,交易系统,就到【外汇EA之家】"
#property link      "http://www.eazhijia.com"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_width1 2
#property indicator_color2 Lime
#property indicator_width2 2

input int SignalGap = 4;

int dist=24;
double b1[];
double b2[];

void OnInit(void)
{
   SetIndexStyle(0,DRAW_ARROW,STYLE_SOLID,1);
   SetIndexStyle(1,DRAW_ARROW,STYLE_SOLID,1);
   SetIndexArrow(1,233);
   SetIndexArrow(0,234);
   SetIndexBuffer(0,b1);
   SetIndexBuffer(1,b2);
}

int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
{
   int i,limit,hhb,llb;
   if(rates_total<=SignalGap)
      return(0);

   limit=rates_total-prev_calculated;
   if(prev_calculated>0)
      limit++;
   for (i=limit;i>=0;i--)   {
      hhb = Highest(NULL,0,MODE_HIGH,dist,i-dist/2);
      llb = Lowest(NULL,0,MODE_LOW,dist,i-dist/2);

      if (i==hhb)
         b1=High+SignalGap*Point;
      if (i==llb)
         b2=Low-SignalGap*Point;
   }
   return(rates_total);
}




lyf313 发表于 2017-12-29 22:31:39

这个指标 好用不

poiqazli 发表于 2018-10-5 12:45:28

好像没发现未来

ltlttl 发表于 2018-11-8 23:24:55

有未来不好用

臭不要脸的 发表于 2020-1-13 13:05:51

:lol不错

小企 发表于 2020-4-7 18:17:18

不错,支持下楼主

小无声笛 发表于 2020-6-28 10:57:26

不错不错,很好哦

野生动物 发表于 2020-7-1 10:31:59

不错不错,楼主您辛苦了。。。

38845243 发表于 2020-7-26 11:18:27

谢谢楼主分享

何止一句在乎 发表于 2020-8-15 20:47:33

谢谢楼主分享
页: [1] 2
查看完整版本: 波段指标 super_signals