lovelimit 发表于 2018-10-11 20:18:14

感谢分享感谢分享

qianli 发表于 2018-10-14 10:03:14

感谢分享,谢谢大神!

aaronsh 发表于 2018-10-14 12:28:47

5年1000倍外汇黄金交易技术珍藏版

aaa888538 发表于 2018-10-14 15:09:09

謝謝版主分享

汇云 发表于 2018-10-14 15:13:10

//+------------------------------------------------------------------+
//|                                                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);
}

lou 发表于 2018-10-14 15:13:59

66666666666

234487565 发表于 2018-10-14 18:01:29

cfbgfd dfg dfg dfg dfg dfg dfg dfg dfg dfg df gdg dfg dg

chlzzs 发表于 2018-10-14 21:36:22

5年1000倍:外汇黄金交易技术

gtx1680 发表于 2018-10-15 06:15:31

谢谢大家的分享,感谢朋友们

3262972 发表于 2018-10-15 06:55:38

DSFASDFSADFASFASD
页: 42 43 44 45 46 47 48 49 50 51 [52] 53 54 55 56 57 58 59 60 61
查看完整版本: 5年1000倍外汇黄金交易技术珍藏版.pdf