Dear all,
I am trying to plot 3 type of moving averages in one line. The code as follows:
SetChartOptions(0,chartShowArrows|chartShowDates);
Plot( C, "Price", ParamColor( "Color", colorDefault ), ParamStyle( "Style", styleCandle, maskPrice ) );
A = EMA (C,8);
B = MA (C,20);
D = WMA (C,50);
3Lines = (A+B+D)/3;
Plot (3Lines,"3Lines",colorBlack,styleLine|styleThick);
I got a sense that I have to define value for each parameter (A,B, and D) but have no idea. Also no luck in findings any topic here.
Any help would be appreciated. Thank you very much.