老王吧 发表于 2016-4-25 11:46:08

4MAsTrend.mq4



//+------------------------------------------------------------------+
//|                                                    4MAs Trend.mq4 |
//|                                                      |
//|                                        http://www.metaquotes.net |
//+------------------------------------------------------------------+

#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 1
#property indicator_buffers 3
#property indicator_color1 Red
#property indicator_color2 LimeGreen
#property indicator_color3 Gold
//---- input parameters
extern int Minutes=60;
extern int MA1_Value=5;
extern int MA1_Mode=0;
extern int MA2_Value=13;
extern int MA2_Mode=0;
extern int MA3_Value=34;
extern int MA3_Mode=3;
extern int MA4_Value=55;
extern int MA4_Mode=3;

//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
string TimeFrameStr;
double MA1,MA2,MA3,MA4;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_HISTOGRAM,STYLE_SOLID,2,Red);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_HISTOGRAM,STYLE_SOLID,2, LimeGreen);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_HISTOGRAM,STYLE_SOLID,2, Gold);
SetIndexBuffer(2,ExtMapBuffer3);

switch(Minutes)
   {
      case 1 : TimeFrameStr="Period_M1"; break;
      case 5 : TimeFrameStr="Period_M5"; break;
      case 15 : TimeFrameStr="Period_M15"; break;
      case 30 : TimeFrameStr="Period_M30"; break;
      case 60 : TimeFrameStr="Period_H1"; break;
      case 240 : TimeFrameStr="Period_H4"; break;
      case 1440 : TimeFrameStr="Period_D1"; break;
      case 10080 : TimeFrameStr="Period_W1"; break;
      case 43200 : TimeFrameStr="Period_MN1"; break;
      default : TimeFrameStr="Current Timeframe"; Minutes=0;
   }
   IndicatorShortName("Flat Trend w 4 MAs ("+TimeFrameStr+")");


//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                     |
//+------------------------------------------------------------------+
int deinit()
{
//----
   
//----
   return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
{
   int    counted_bars=IndicatorCounted();
//----

for (int i = 0; i < 300; i++){
   ExtMapBuffer1=0;
   ExtMapBuffer2=0;
   ExtMapBuffer3=0;
   
   MA1=iMA(NULL,Minutes,MA1_Value,0,MA1_Mode,PRICE_CLOSE,i);
   MA2=iMA(NULL,Minutes,MA2_Value,0,MA2_Mode,PRICE_CLOSE,i);
   MA3=iMA(NULL,Minutes,MA3_Value,0,MA3_Mode,PRICE_CLOSE,i);
   MA4=iMA(NULL,Minutes,MA4_Value,0,MA4_Mode,PRICE_CLOSE,i);


   if(MA1 > MA2 && MA2 > MA3 && MA3 > MA4 )ExtMapBuffer2 = 1;
   if(MA1 < MA2 && MA2 < MA3 && MA3 < MA4 )ExtMapBuffer1 = 1;

   if(ExtMapBuffer1 == 0 && ExtMapBuffer2 == 0){ExtMapBuffer3 = 1;}

}



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


星风雪雨 发表于 2020-6-1 11:05:23

我是来刷分的,嘿嘿

要一起过海洋 发表于 2020-6-6 21:28:02

不错不错,楼主您辛苦了。。。

正在输入 发表于 2020-7-19 11:59:43

谢谢楼主分享

汇市小瘪三 发表于 2020-8-31 13:03:07

谢谢楼主分享

苍井空 发表于 2020-9-6 10:01:01

帮你顶下哈!!

小妹er 发表于 2020-11-26 12:29:12

{:1_186:}

baoshan2007 发表于 2021-7-8 13:00:11

{:1_181:}

晗富敏 发表于 2021-7-8 14:37:44

谢谢

teststudy 发表于 2021-8-3 19:13:04

{:1_186:}
页: [1]
查看完整版本: 4MAsTrend.mq4