顺水外汇EA交易网MT4

标题: 请牛版添加一个交叉报警,谢谢 [打印本页]

作者: Tomi.wang    时间: 2018-1-11 11:57
标题: 请牛版添加一个交叉报警,谢谢
/*+-------------------------------------------------------------------+
  |                                                          iMAX.mq4 |
  |                                                                   |
  | "Modified Optimum Elliptic Filter"                                |
  | Source of calculations:                                           |
  | Stocks & Commodities vol 18:7 p20-29                              |
  | Optimal Detrending by John F. Ehlers                              |
  |                                                                   |
  |                                                    Coded by Wylie |
  |                                              dazzle.html@live.com |
  +-------------------------------------------------------------------+*/
#property copyright "Wylie"
#property link      "dazzle.html@live.com"
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Chocolate
#property indicator_color2 DodgerBlue
#property indicator_width1 2
#property indicator_width2 2
extern int Ph2shiftRed = 1;
int buffers = 2;
int MinBars;
double ExtMapBuffer0[];
double ExtMapBuffer1[];
int init()
{
IndicatorBuffers(2);
// Index Buffer 0
SetIndexBuffer(0,ExtMapBuffer0);
SetIndexShift(0,0);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2,Chocolate);
// Index Buffer 1
SetIndexBuffer(1,ExtMapBuffer1);
SetIndexShift(1,0);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2,DodgerBlue);
IndicatorShortName("iMAX");
MinBars = 20;
return (0);
} // int init()
int start()
{   
if(Bars  0){countedBars--;}
int c,limit = Bars - countedBars - 1;
double x = 0.5;
for(c = limit;c >= 0;c--)
     {ExtMapBuffer0[c] = (0.13785 * (2 * ((High[c]   + Low[c])   * x) - ((High[c+1] + Low[c+1]) * x)))
                       + (0.0007  * (2 * ((High[c+1] + Low[c+1]) * x) - ((High[c+2] + Low[c+2]) * x)))
                       + (0.13785 * (2 * ((High[c+2] + Low[c+2]) * x) - ((High[c+3] + Low[c+3]) * x)))
                       + (1.2103  * ExtMapBuffer0[c + 1] - 0.4867 * ExtMapBuffer0[c + 2]);
      ExtMapBuffer1[c] = ExtMapBuffer0[c+Ph2shiftRed];
     } // for(c = limit;c >= 0;c--)
return (0);  
} // int start()
/*+-------------------------------------------------------------------+
  |                                                                   |
  +-------------------------------------------------------------------+*/

作者: 天翊_o39Z9    时间: 2018-1-11 12:04
谢谢分享
作者: liujia6611    时间: 2018-1-11 12:39
没看到哪个编辑处理啊

作者: jiaxuan    时间: 2018-1-11 13:53

学习学习
作者: 落雨    时间: 2018-1-11 14:39
在震荡下,不也会报警么。。?
作者: 349309448    时间: 2018-1-11 15:34
谢谢分享
作者: colt    时间: 2018-1-11 15:40
谢谢分享,下来学习学习
作者: stefanlife    时间: 2018-1-11 16:06
这个可以用吗?
作者: kszhf    时间: 2018-1-11 17:06
难得的好模板,赞一个
作者: luyi0606    时间: 2018-1-11 18:17
难得的好模板,赞一个
作者: 张益达    时间: 2018-1-11 19:12
这是几日线和几日线啊
作者: 别糊里糊涂    时间: 2018-1-11 19:30
这是个什么东西?
作者: silver08    时间: 2018-1-11 19:43
谢谢分享
作者: shidu    时间: 2018-1-11 20:54
7小时前
民穷财尽,社会破产,国家破产。国有金,吝不与人,为他人藏。此其一。善不能举,恶不能退,利不能兴,害不能除。化善而作贪,使学而为盗。此其二。宫中、府中、梦中,此哭中、彼笑中,外人窥伺中、霄小拨弄中,国际侦探金钱运动中,一举一动,一黜一陟,堕其术中。此其三

作者: guoyoz    时间: 2018-1-11 21:37
谢谢分享




欢迎光临 顺水外汇EA交易网MT4 (http://waterforex.com/) Powered by Discuz! X3.2