梦丫头 发表于 2020-11-17 22:36:11

Stohastic With Flat



//+------------------------------------------------------------------+
//|                                          Stohastic With Flat.mq4 |
//|                                                   Powered byStep |
//|                                                         04/03/14 |
//+------------------------------------------------------------------+
#property indicator_separate_window   
#property indicator_buffers 2      
#property indicator_color1 Green   
#property indicator_color2 Red      

extern string Stohastic = "Stohastic With Flat";
extern int K = 5;
extern int D = 3;
extern int slow = 3;
extern int avg_meth = 0;
extern int price = 1;
extern int BB = 20;
extern double flat =0.0009;

double Buf_0[],Buf_1[];         

int init()                        
{
   SetIndexBuffer(0,Buf_0);         
   SetIndexStyle (0,DRAW_LINE,STYLE_SOLID,1);
   SetIndexBuffer(1,Buf_1);      
   SetIndexStyle (1,DRAW_LINE,STYLE_SOLID,1);
   return(0);                        
}
//--------------------------------------------------------------------
int start()                        
{
   int i,                        
       Counted_bars;               
//--------------------------------------------------------------------
   Counted_bars=IndicatorCounted();
   i=Bars-Counted_bars-1;         
   while(i>=0)                     
   {

    if ((iBands(NULL,0,BB,2,0,PRICE_MEDIAN,MODE_UPPER,i)-
          iBands(NULL,0,BB,2,0,PRICE_MEDIAN,MODE_MAIN,i)) < flat)
               
      { if (iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_MAIN,i) >
            iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_SIGNAL,i))
            {Buf_0 = 55;Buf_1 = 45;}
       if (iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_MAIN,i) <
            iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_SIGNAL,i))
            {Buf_0 = 45;Buf_1 = 55;}
      }
    else
      {

      Buf_0=iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_MAIN,i);
      Buf_1=iStochastic(NULL,0,K,D,slow,avg_meth,price,MODE_SIGNAL,i);
      }
      i--;                        
   }
//--------------------------------------------------------------------
   return(0);                        
}


付冒砍 发表于 2020-11-24 19:20:24

支持下

罗立芳 发表于 2020-12-3 20:59:11

顶下

初级阶段 发表于 2020-12-5 16:10:17

{:1_181:}

东门老三 发表于 2020-12-13 11:07:34

{:1_179:}

老好人 发表于 2020-12-17 10:36:47

支持下

dmpdc 发表于 2020-12-24 16:20:12

顶下

diamonddust77 发表于 2020-12-27 17:21:48

支持下

chenqikj 发表于 2020-12-31 20:36:15

{:1_179:}

christina-verso 发表于 2021-1-2 11:12:45

{:1_186:}
页: [1] 2 3 4 5 6
查看完整版本: Stohastic With Flat