+91-0000000000

}

Monday – Friday : 9:00 AM – 6:30 PM

Indicator 5x5 Moving Average Crossover

Utilizing AmiBroker data feeds, this AFL identifies crossovers in the 5×5 moving averages, indicating potential shifts in trends or momentum. The integration of accurate data feeds enhances the reliability of this indicator, aiding traders in timely entry and exit decisions.

/
// 5x5 MA Crossover System 

Range1=Optimize("range1",5,1,20,1);
Range2=Optimize("range2",5,1,125,1);
  
Buy = Cross((MA(Close,range1)),(MA(Open,range2))); 
Sell = Cross(MA(Open,range2),(MA(Close,range1))); 
Short = Sell; 
Cover = Buy; 

// plot expanded average 

Plot(MA( Close,range1), "5Min-c", colorRed );  
Plot(MA( Open,range2), "5Min-o", colorGreen );  

// plot arrows
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) );

Open chat
1
Hi, how can I help you?