Dear friend,
use this code
right click on chart and then from parameters u can change thickness from 0 % to 100 % , i have kept its default value at 20 %
Code:
_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
aa = Param("Width thickness", 20,0,100,1);
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ,Null, Null, 0, 1, aa);
_SECTION_END();
Dear friend,
use this code
right click on chart and then from parameters u can change thickness from 0 % to 100 % , i have kept its default value at 20 %
Code:
_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
aa = Param("Width thickness", 20,0,100,1);
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ,Null, Null, 0, 1, aa);
_SECTION_END();