Average Price In Chart

#3
Is there any one help me to display the average price. Such as I want to see The EMA (5) ,EMA(10) EMA (15)
please
Plot(EMA(C,5),"EMA-5", ParamColor( "EMA-5 color", colorCycle ), ParamStyle("EMA5-Style", styleLine, maskDefault ));
Plot(EMA(C,10),"EMA-10", ParamColor( "EMA-10 color", colorCycle ), ParamStyle("EMA10-Style", styleLine, maskDefault ));
Plot(EMA(C,15),"EMA-15", ParamColor( "EMA-15 color", colorCycle ), ParamStyle("EMA15-Style", styleLine, maskDefault ));
 
#4
Hi Kabir
Try this one. Hope it is the same, what you are looking for.


_SECTION_BEGIN("EMA");
Plot(EMA(Close,5),"EMA5",colorYellow,style=styleThick);
Plot(EMA(Close,10),"EMA10",colorGreen,style=styleThick);
Plot(EMA(Close,15),"EMA15",colorRed,style=styleThick);
_SECTION_END();

_SECTION_BEGIN("Basic Chart");
Plot(Close,"Price",colorWhite, styleCandle);
SetChartOptions(0,chartShowArrows|chartShowDates);
_SECTION_END();


Enjoy....Happy Trading.
 

Similar threads