客服热线:18391752892

我写的指标MACD箭头不显示,请老师帮忙?

   日期:2019-01-12     浏览:659    
马上注册,结交更多好友,下载更多资源

您需要 登录 才可以下载或查看,没有帐号?注册 #property indicator_chart_window
 #property indicator_buffers 6
 #property indicator_color1 Linen
 #property indicator_color2 Red
 #property indicator_color3 Red
 #property indicator_color4 Lime
 #property indicator_width1 2
 #property indicator_width3 3
 #property indicator_width4 3
 
 #property indicator_color5 Red
 #property indicator_color6 Green
 #property indicator_width5 3
 #property indicator_width6 3
 
 
 extern int 变色均线=26;
 extern int FastEMA=12;
 extern int SlowEMA=26;
 extern int SignalSMA=9;
 extern int EMA1=60;
 
 
 
 //---- indicator buffers
 double   M1[];
 double   M2[];
 double   M3[];
 double   M4[];
 double duo[];
 double kong[];
 double   MacdBuffer[];
 double   SignalBuffer[];
 //+------------------------------------------------------------------+
 //| Custom indicator initialization function                  |
 //+------------------------------------------------------------------+
 int init()
    {
 //---- drawing settings
   SetIndexStyle(0,DRAW_LINE);
   SetIndexStyle(1,DRAW_LINE);
      SetIndexStyle(2,DRAW_ARROW);
   SetIndexArrow( 2, 67);
   SetIndexStyle(3,DRAW_ARROW);
   SetIndexArrow( 3, 68);
 
 //---- indicator buffers mapping
   SetIndexBuffer(0,M1);
    SetIndexBuffer(1,M2);
     SetIndexBuffer(2,M3);
     SetIndexBuffer(3,M4);
   
 //---- name for DataWindow and indicator subwindow label
   IndicatorShortName( MA( +EMA1+ , +变色均线+ ,)
   //IndicatorShortName( MACD( +FastEMA+ , +SlowEMA+ , +SignalSMA+ )
   SetIndexLabel(0, M1
   SetIndexLabel(1, M2
   SetIndexLabel(2, M3
   SetIndexLabel(3, M4
      SetIndexBuffer(4,duo);
   SetIndexBuffer(5,kong);
   SetIndexStyle(4,DRAW_LINE);
   SetIndexStyle(5,DRAW_LINE);
   SetIndexDrawBegin(4,变色均线);
    SetIndexDrawBegin(5,变色均线);
   IndicatorDigits(Digits);
   
 //---- initialization done
   return(0);
    }
 //+------------------------------------------------------------------+
 //| Moving Averages Convergence/Divergence                   |
 //+------------------------------------------------------------------+
 int start()
    {
   double temp0,temp1;
   int limit;
   int counted_bars=IndicatorCounted();
   if(counted_bars 0) counted_bars--;
   limit=Bars-counted_bars;
       
   
   
 //---- macd counted in the 1-st buffer
   for(int i=0; i
外汇交易有很大的风险性,本站所有资源均来自网络,请选择使用,如若出现亏损,本站不承担任何责任!


特别提示:本信息由相关企业自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


0相关评论
相关行情
推荐行情
点击排行