Dear Friends,
I need solution how to correctly place the volume chart together with MA and Shapes in the Option-2. (AFL attaced/ or below):
if you disable Option-1 and Enable Option-2 but opening the /* and */, then the option-1 is correctly placed. But why the Option-2 can not.
I need the Option-2 to place together with Price Chart, so we have to use "StyleOwnscale" in the plot command.
Could you solve this, or do I need some additional parameter ?
Thanks & Regards
Sawios
Per=Param("Per",50,1,500);
Height=Param("V Height",2,1,100);
s=MA(V,Per);
/*
//---------- option-1
Plot(V,"V-1",colorBlue, styleHistogram);
Plot(s,"Avg-1",colorRed, styleLine);
PlotShapes( Cross(V,s)*shapeUpArrow, colorYellow, layer=0,yposition= s, Offset=-12 );
*/
//------------- option-2
Plot(V,"V-2",colorGreen, styleHistogram+styleOwnScale,Height);
Plot(s,"Avg-2",colorOrange, styleLine+styleOwnScale,Height);
PlotShapes( Cross(V,s)*shapeUpArrow, colorYellow, layer=0,yposition= s, Offset=-12 ); |