36评论

3收藏

找老师翻译源码 复盘盈利很高半年3000点

avatar 浮华 | 8911 人阅读 | 36 人评论 | 2011-11-14

//+------------------------------------------------------------------+
  //|                                    Sidus v.2 Entry Indicator.mq4 |
  //|                                                                  |
  //|                                                   Ideas by Sidus |
  //+------------------------------------------------------------------+
  #property copyright "Sidus"
  #property link      ""
   
  #property indicator_chart_window
  #property indicator_buffers 4
  #property indicator_color1 Blue
  #property indicator_color2 Red
  #property indicator_color3 Blue
  #property indicator_color4 DodgerBlue
   
  #include
  //---- input parameters
  extern int       FastEMA=14;
  extern int       SlowEMA=21;
  extern int       RSIPeriod=17;
  extern bool      Alerts=false;
  //---- buffers
  double ExtMapBuffer1[];
  double ExtMapBuffer2[];
  double ExtMapBuffer3[];
  double ExtMapBuffer4[];
  //double rsi_sig[];
  //---- variables
  int sigCurrent=0;
  int sigPrevious=0;
  double pipdiffCurrent=0;
  double pipdiffPrevious=0;
  //+------------------------------------------------------------------+
  //| Custom indicator initialization function                         |
  //+------------------------------------------------------------------+
  int init()
    {
  //---- indicators
     SetIndexStyle(0,DRAW_LINE);
     SetIndexBuffer(0,ExtMapBuffer1);
     SetIndexStyle(1,DRAW_LINE,1,3);
     SetIndexBuffer(1,ExtMapBuffer2);
     SetIndexStyle(2,DRAW_ARROW,1,5);
     SetIndexArrow(2,233);
     SetIndexBuffer(2,ExtMapBuffer3);
     SetIndexEmptyValue(2,0.0);
     SetIndexStyle(3,DRAW_ARROW,1,5);
     SetIndexArrow(3,234);
     SetIndexBuffer(3,ExtMapBuffer4);
     SetIndexEmptyValue(3,0.0);
  //----
     return(0);
    }
  //+------------------------------------------------------------------+
  //| Custom indicator deinitialization function                       |
  //+------------------------------------------------------------------+
  int deinit()
    {
  //----
     
  //----
     return(0);
    }
  //+------------------------------------------------------------------+
  //| Custom indicator iteration function                              |
  //+------------------------------------------------------------------+
  int start()
    {
     int limit;
     int counted_bars=IndicatorCounted();
     double rsi_sig=0;
     bool entry=false;
     double entry_point=0;
     
     //---- check for possible errors
     if(counted_bars0) counted_bars--;
     limit=Bars-counted_bars;
   
     //---- main loop
     for(int i=0; i0 && rsi_sig>50)
       {
         sigCurrent = 1;  //Up
       }
       else if (pipdiffCurrent

评论|共 36 个

相亲

发表于 2012-11-21 23:00:23 | 显示全部楼层

真好。。。。。。。。。  

知不知道

发表于 2012-11-21 23:00:23 | 显示全部楼层

强人,佩服死了。呵呵,不错啊  

叫花子

发表于 2012-11-22 01:36:01 | 显示全部楼层

嘿嘿  

二元期权1

发表于 2012-11-22 01:36:01 | 显示全部楼层

厉害!强~~~~没的说了!  

EA定制

发表于 2012-11-22 01:36:01 | 显示全部楼层

围观来了哦  

富利外汇

发表于 2012-11-22 01:36:01 | 显示全部楼层

貌似我真的很笨????哎  

whyhui

发表于 2012-11-22 01:36:01 | 显示全部楼层

今天再看下  

格西8023

发表于 2012-11-22 01:36:01 | 显示全部楼层

先看看怎么样!  

jun6237962

发表于 2012-11-22 01:36:01 | 显示全部楼层

我有个群,大家一起来讨论EA.  

1234下一页
您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则