顺水外汇EA交易网MT4

标题: 一目均衡表 云层往左边移动1个k线周期 下面的代码如何修改 [打印本页]

作者: 子于    时间: 2018-1-11 20:20
标题: 一目均衡表 云层往左边移动1个k线周期 下面的代码如何修改
#property indicator_chart_window
#property indicator_buffers 7
#property indicator_color1 Red          // Tenkan-sen
#property indicator_color2 Blue         // Kijun-sen
#property indicator_color3 SandyBrown   // Up Kumo
#property indicator_color4 Thistle      // Down Kumo
#property indicator_color5 Lime         // Chikou Span
#property indicator_color6 SandyBrown   // Up Kumo bounding line
#property indicator_color7 Thistle      // Down Kumo bounding line
//--- input parameters
input int InpTenkan=9;   // Tenkan-sen
input int InpKijun=26;   // Kijun-sen
input int InpSenkou=52;  // Senkou Span B
//--- buffers
double ExtTenkanBuffer[];
double ExtKijunBuffer[];
double ExtSpanA_Buffer[];
double ExtSpanB_Buffer[];
double ExtChikouBuffer[];
double ExtSpanA2_Buffer[];
double ExtSpanB2_Buffer[];
//---
int    ExtBegin;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
void OnInit(void)
  {
   IndicatorDigits(Digits);
//---
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0,ExtTenkanBuffer);
   SetIndexDrawBegin(0,InpTenkan-1);
   SetIndexLabel(0,"Tenkan Sen");
//---
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1,ExtKijunBuffer);
   SetIndexDrawBegin(1,InpKijun-1);
   SetIndexLabel(1,"Kijun Sen");
//---
   ExtBegin=InpKijun;
   if(ExtBegin[I]InpTenkan)
      pos=prev_calculated-1;
   for(i=pos; ilow[k])
            low_value=low[k];
         k++;
        }
      ExtTenkanBuffer[i]=(high_value+low_value)/2;
     }
//--- Kijun Sen
   pos=InpKijun-1;
   if(prev_calculated>InpKijun)
      pos=prev_calculated-1;
   for(i=pos; ilow[k])
            low_value=low[k];
         k++;
        }
      ExtKijunBuffer[i]=(high_value+low_value)/2;
     }
//--- Senkou Span A
   pos=ExtBegin-1;
   if(prev_calculated>ExtBegin)
      pos=prev_calculated-1;
   for(i=pos; iInpSenkou)
      pos=prev_calculated-1;
   for(i=pos; ilow[k])
            low_value=low[k];
         k++;
        }
      ExtSpanB_Buffer[i]=(high_value+low_value)/2;
      ExtSpanB2_Buffer[i]=ExtSpanB_Buffer[i];
     }
//--- Chikou Span
   pos=0;
   if(prev_calculated>1)
      pos=prev_calculated-1;
   for(i=pos; i<rates_total; i++)
      ExtChikouBuffer[i]=close[i];
//---
   return(rates_total);
  }
//+------------------------------------------------------------------+

作者: abc3251886    时间: 2018-1-11 21:48
sjjsjj

作者: 子于    时间: 2018-1-11 22:54

伙计 你这回的叫什么帖子  会的话 留言 可以用好指标 或者好的资料 换

作者: 李中华中的人    时间: 2018-1-11 23:01
表示不会。。。。。
作者: cheng0ye    时间: 2018-1-12 00:13
帮你顶帖

作者: abc3251886    时间: 2018-1-12 01:49
疯疯癫癫发

作者: abc3251886    时间: 2018-1-12 02:38
反反复复发

作者: kingdummy    时间: 2018-1-12 02:56
学习学习
作者: chenyuan    时间: 2018-1-12 03:54
1111111
作者: TTTTTTT    时间: 2018-1-12 05:09
gggggggggggggggggggggggggggggggggggggggg
作者: 海洋_赢    时间: 2018-1-12 05:43
感谢楼主的分享
作者: 啄木鸟    时间: 2018-1-12 07:08
学习学习
作者: EUR168    时间: 2018-1-12 08:44
回复有金币,挣钱是唯一
作者: a1513784    时间: 2018-1-12 09:21
表 云层往左边移动1个k线周期 下面的代码如何修改

作者: 加大    时间: 2018-1-12 10:50
啊实打实打算发大苏打撒




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