比特币通信协议 - 币圈消息

比特币通信协议篇11、二、TURN简介。在典型的情况下,TURN客户端连接到内网中,并且通过一个或者多个NAT到 详细

求大神帮忙修改一个指标

  [复制链接]
492 11
johnnyzxf 发表于 2018-1-11 13:22:36 | 只看该作者 |阅读模式 打印 上一主题 下一主题
指标就是正常的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);
  }
//+------------------------------------------------------------------+
收藏
收藏0
转播
转播
分享
分享
分享
淘帖0

精彩评论11

跳转到指定楼层
沙发
过去了 发表于 2018-1-11 13:57:56 | 只看该作者
增加二个缓存,把50以上的赋值给一个,下给另一个。就可以了
板凳
老氓子 发表于 2018-1-11 15:35:59 | 只看该作者
学习下学习下
地板
luyi0606 发表于 2018-1-11 15:42:30 | 只看该作者
0000000000000000000000
5#
老氓子 发表于 2018-1-11 15:48:43 | 只看该作者
学习下学习下
6#
fxmaster 发表于 2018-1-11 16:01:07 | 只看该作者
我发了个问题也没人。回
7#
pszwgk@163.com 发表于 2018-1-11 17:00:39 | 只看该作者
等待大神现身
8#
wbl_1 发表于 2018-1-11 17:42:42 | 只看该作者
支持楼上想法
9#
fxmaster 发表于 2018-1-11 19:21:55 | 只看该作者
拿金币容易
10#
13156418 发表于 2018-1-11 20:20:28 | 只看该作者
有点难度啊
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

发布主题
阅读排行更多+

Powered by 顺水鱼MT4外汇EA网! X3.2© 2001-2017 顺水MT4外汇EA公司.( 陕ICP备17014341号-1