Dear Team,
I am looking to add an indicator on Chart called Guppy Multiple Moving Averages (GMMA)
The averages would be
Short Term Trader = 3,5,8,10,12,15
Long Term Investor = 30,35,40,45,50,60
All theses above averages are Exponential.
As i can add these EMA individually but its only allowing 10 indicator max on one chart.
Therefore if you can add theses as an indicator or if you guide me to add these code to EA.
THIS BELOW GIVEN AFL CODE CAN BE ADDED ?? IF YES THEN PLZ GUIDE HOW TO
MaxGraph = 12;
/* blue lines */
Graph0= EMA( Close, 3 );
Graph1= EMA( Close, 5 );
Graph2= EMA( Close, 7 );
Graph3= EMA( Close, 10 );
Graph4= EMA( Close, 12 );
Graph5= EMA( Close, 15 );
Graph0Style = Graph1Style = Graph2Style = Graph3Style =Graph4Style =Graph5Style = 1;
Graph0Color = Graph1Color = Graph2Color = Graph3Color =Graph4Color =Graph5Color = 6;
/* red lines */
Graph6= EMA( Close, 30 );
Graph7= EMA( Close, 35 );
Graph8= EMA( Close, 40 );
Graph9= EMA( Close, 45 );
Graph10= EMA( Close, 50 );
Graph11 = EMA( Close, 60 );
Graph6Style = Graph7Style = Graph8Style =Graph9Style =Graph10Style = Graph11Style = 1;
Graph6Color = Graph7Color = Graph8Color =Graph9Color =Graph10Color = Graph11Color = 4;
Thanks in advance
Milin
Sorry Karthik but i did get you, can please elaborate more on it.
You can use the Expert Adviser (EA) feature in Pi to code this. In fact you need not know how to code to use the expert adviser feature. Suggest you read through the post and give it a shot.