顺水外汇EA交易网MT4

标题: 求大神帮忙修改一个指标 [打印本页]

作者: johnnyzxf    时间: 2018-1-11 13:22
标题: 求大神帮忙修改一个指标
指标就是正常的RSI,我将它修改成了柱状图,并且将RSI数值减去了50,这样就可以围绕0轴呈现上下柱状形态了,但现在我想零轴以上一个颜色,零轴一下一个颜色,请问该怎么弄哈?谢谢大神
//+------------------------------------------------------------------+
//|                                                          RSI.mq4 |
//|                      Copyright ?2004, MetaQuotes Software Corp. |
//+------------------------------------------------------------------+
#property copyright "Copyright ?2004, MetaQuotes Software Corp."
#property indicator_separate_window
#property indicator_level1 20
#property indicator_level2 -20
#property indicator_levelcolor Silver
#property indicator_levelwidth 1
#property indicator_levelstyle 2
#property indicator_buffers 1
#property indicator_color1 DarkKhaki
#property indicator_width1 2
//---- input parameters
extern int RSIPeriod=17;
//---- buffers
double RSIBuffer[];
double PosBuffer[];
double NegBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   string short_name;
//---- 2 additional buffers are used for counting.
   IndicatorBuffers(3);
   SetIndexBuffer(1,PosBuffer);
   SetIndexBuffer(2,NegBuffer);
//---- indicator line
   SetIndexStyle(0,DRAW_HISTOGRAM);
   SetIndexBuffer(0,RSIBuffer);
//---- name for DataWindow and indicator subwindow label
   short_name="RSI Divergence("+RSIPeriod+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,short_name);
//----
   SetIndexDrawBegin(0,RSIPeriod);
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Relative Strength Index                                          |
//+------------------------------------------------------------------+
int start()
  {
   int    i,counted_bars=IndicatorCounted();
   double rel,negative,positive;
//----
   if(Bars=RSIPeriod) i=Bars-counted_bars-1;
   while(i>=0)
     {
      double sumn=0.0,sump=0.0;
      if(i==Bars-RSIPeriod-1)
        {
         int k=Bars-2;
         //---- initial accumulation
         while(k>=i)
           {
            rel=Close[k]-Close[k+1];
            if(rel>0) sump+=rel;
            else      sumn-=rel;
            k--;
           }
         positive=sump/RSIPeriod;
         negative=sumn/RSIPeriod;
        }
      else
        {
         //---- smoothed moving average
         rel=Close[i]-Close[i+1];
         if(rel>0) sump=rel;
         else      sumn=-rel;
         positive=(PosBuffer[i+1]*(RSIPeriod-1)+sump)/RSIPeriod;
         negative=(NegBuffer[i+1]*(RSIPeriod-1)+sumn)/RSIPeriod;
        }
      PosBuffer[i]=positive;
      NegBuffer[i]=negative;
      if(negative==0.0) RSIBuffer[i]=0.0;
      else RSIBuffer[i]=100.0-100.0/(1+positive/negative)-50;
      i--;
     }
//----
   return(0);
  }
//+------------------------------------------------------------------+

作者: 过去了    时间: 2018-1-11 13:57
增加二个缓存,把50以上的赋值给一个,下给另一个。就可以了
作者: 老氓子    时间: 2018-1-11 15:35
学习下学习下
作者: luyi0606    时间: 2018-1-11 15:42
0000000000000000000000
作者: 老氓子    时间: 2018-1-11 15:48
学习下学习下
作者: fxmaster    时间: 2018-1-11 16:01
我发了个问题也没人。回

作者: pszwgk@163.com    时间: 2018-1-11 17:00
等待大神现身
作者: wbl_1    时间: 2018-1-11 17:42
支持楼上想法
作者: fxmaster    时间: 2018-1-11 19:21
拿金币容易
作者: 13156418    时间: 2018-1-11 20:20
有点难度啊
作者: 木糖醇    时间: 2018-1-11 20:45
学习学习
作者: 和谐机车    时间: 2018-1-11 21:38
我要金币啊




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