公式网 股票指标公式源码分享 登录 注册
公式指标平网
未来函数检测
首页 金钻指标 通达信公式 大智慧公式 同花顺公式 文华财经公式 东财通公式 飞狐公式 操盘手公式 其他公式 公式解答 股票软件 股票池
当前位置:→ 公式网 > 其他公式 > MT4公式 > 正文 → 正文

MT4的迪马克序列

发布时间:2015/10/22 18:33:05  浏览次数:

#property indicator_chart_window
 #property indicator_buffers 1
 #property indicator_color1 LimeGreen
 //#property indicator_color2 Red
 //---- input parameters
 //int shift=0;
 int i;
 int num=0;
 int num1=0;
 string textVar;
 //---- buffers
 double ExtMapBuffer1[];
 //double ExtMapBuffer2[];

//double b4plusdi,b4minusdi,nowplusdi,nowminusdi;

//+------------------------------------------------------------------+
 //| Custom indicator initialization function |
 //+------------------------------------------------------------------+
 int init()
 {
 //---- indicators

SetIndexStyle(0,DRAW_ARROW);
 SetIndexArrow(0,159);
 SetIndexBuffer(0, ExtMapBuffer1);
 /*
 SetIndexStyle(1,DRAW_ARROW,EMPTY);
 SetIndexArrow(1,234);
 SetIndexBuffer(1, ExtMapBuffer2);
 */
 //----
 return(0);
 }
 //+------------------------------------------------------------------+
 //| Custor indicator deinitialization function |
 //+------------------------------------------------------------------+
 int deinit()
 {
 //---- TODO: add your code here
 int limit;
 limit=1500;
 for(int i=limit; i>=0; i--)
 {
  ObjectDelete(""+i);
 }

//----
 return(0);
 }
 //+------------------------------------------------------------------+
 //| Custom indicator iteration function |
 //+------------------------------------------------------------------+
 int start()
 {
 int limit;
 int counted_bars=IndicatorCounted();
 //---- check for possible errors
 if(counted_bars<0) return(-1);

//---- last counted bar will be recounted
 if(counted_bars>0) counted_bars--;
limit=1500-counted_bars;
 //---- macd counted in the 1-st buffer

for(int i=limit; i>=0; i--)
 {
if(Close[i+1]<Close[i+5])num = num + 1;
 else num = 0;
  if (num > 0 && num < 10) {
   textVar = num;
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],Low[i+1]-5*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num,0), 10, "Arial", Red);
   }
   if (num == 9) {
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],Low[i+1]-5*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num,0), 16, "Arial", Red);
       }   
   else if((Close[i+1]<Close[i+5])&& num>=10)
   {
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],Low[i+1]-5*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num,0), 10, "Arial", Orange);   
   }
 

if(Close[i+1]>Close[i+5]) num1 = num1 + 1;
 else num1 = 0;

 if (num1 > 0 && num1 < 10)
     {
   textVar = num1;
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],High[i+1]+10*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num1,0), 10, "Arial", RoyalBlue);
   }
   if (num1 == 9) {
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],High[i+1]+10*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num1,0), 16, "Arial", RoyalBlue);
       }   
   else if((Close[i+1]>Close[i+5])&& num1>=10)
   {
   ObjectCreate(""+i, OBJ_TEXT, 0, Time[i+1],High[i+1]+10*Point );
       ObjectSetText(""+i, ""+DoubleToStr(num1,0), 10, "Arial", LightSkyBlue);
     
   }
  
   
 }

//----
 return(0);
 }


 

资源下载链接   资源大小:unknow

手机移动版 - 关于我们 - 联系我们 - 广告合作 - 下载声明 - 网站帮助 - 友情链接 - 网站地图 - TOP
湘ICP备09016573号-3 增值电信业务经营ICP许可证:湘B2-20210269 湘公网安备43108102000039号
Copyright © GSZX.COM.CN ,All Rights Reserved.
股票公式,股票指标,股票软件,股票知识