ll9687 发表于 2017-10-20 15:47:21

指标不会及时更新,可付费求助邮

本帖最后由 ll9687 于 2017-10-20 15:59 编辑

求助!与系统基本一模一样的指标,为什么我的指标就不会跟着及时更新呢?。。。。。。。
指标如下:ADX的指标,请好心人帮指点下,万分感谢!

#property copyright "LL9687"
#property link      "LL9687@163.com"
#property version   "1.00"
#property strict

//#include <MovingAverages.mqh>

#property indicator_separate_window
#propertyindicator_buffers 6
#propertyindicator_color1White
#propertyindicator_color2Crimson
#propertyindicator_color3DodgerBlue
#propertyindicator_color4Red
#propertyindicator_color5LimeGreen

#propertyindicator_width11
#propertyindicator_level120
#propertyindicator_levelcolor clrSilver
#propertyindicator_levelstyle STYLE_DOT
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
input int    ADX_Period=14; //ADX周期

input double Adx_Min=24; //ADX最小值

double adxVal[];
double plsDI[];//保存ADX三个动态数组值
double minDI[];

double Buffer4[];
double Buffer5[];

int OnInit()
{
//--- indicator buffers mapping
   IndicatorBuffers(4);
    IndicatorDigits(Digits);
//--- drawing settings
   SetIndexStyle(0,DRAW_LINE);
   SetIndexStyle(1,DRAW_LINE,STYLE_DASHDOTDOT);
   SetIndexStyle(2,DRAW_LINE,STYLE_DASHDOTDOT);
   SetIndexStyle(3,DRAW_ARROW);
   SetIndexStyle(4,DRAW_ARROW);      
//---
   SetIndexBuffer(0,adxVal);
   SetIndexBuffer(1,plsDI);
   SetIndexBuffer(2,minDI);
   SetIndexBuffer(3,Buffer4);
   SetIndexBuffer(4,Buffer5);
//---
   IndicatorShortName("My_ADX("+IntegerToString(ADX_Period)+")");
   SetIndexLabel(0,"ADX");
   SetIndexLabel(1,"+DI");
   SetIndexLabel(2,"-DI");
   SetIndexArrow(3,241);
   SetIndexArrow(4,242);
//---


   return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
{
//---
   int i,limit;
//---
   if(rates_total<=ADX_Period)
      return(0);
      limit=rates_total-prev_calculated;

if(prev_calculated>0)
      limit++;

//--- adx counted in the 1-st buffer

   for(i=0; i<limit; i++)
   {
      adxVal=iADX(NULL,0,ADX_Period,PRICE_CLOSE,MODE_MAIN,i);
      plsDI=iADX(NULL,0,ADX_Period,PRICE_CLOSE,MODE_PLUSDI,i);
      minDI=iADX(NULL,0,ADX_Period,PRICE_CLOSE,MODE_MINUSDI,i);

      }

   for(i=0; i<limit; i++)      
    {
      Buffer4=EMPTY_VALUE;
      Buffer5=EMPTY_VALUE;
   if(adxVal<=adxVal && adxVal>adxVal && adxVal<=Adx_Min && plsDI>minDI)
         Buffer4=minDI;
   if(adxVal<=adxVal && adxVal>adxVal && adxVal<=Adx_Min && plsDI<minDI)
         Buffer5=plsDI;
         }
//--- return value of prev_calculated for next call
   return(rates_total);
}
//+------------------------------------------------------------------+

yxstjqrg 发表于 2020-6-25 15:12:35

找到好贴不容易,我顶你了,谢了

sparks 发表于 2020-7-21 13:36:07

帮你顶下哈!!

没关系你爱我 发表于 2020-9-7 16:04:49

帮你顶下哈!!

武大娘 发表于 2021-7-24 21:35:11

{:1_186:}

西凉雨 发表于 2025-1-3 17:31:30

支持下
页: [1]
查看完整版本: 指标不会及时更新,可付费求助邮