// Downloaded From https://www.WiseStockTrader.com
_SECTION_BEGIN("SamiCator");
TafavotC = C - Ref(C,-1);
NesbatC = TafavotC /  Ref(C,-1);
DarsadC = NesbatC * 10000;


P = ParamField("Price field",-1);
Periods = Param("Periods", 14, 2, 300, 1, 10 );
Plot( MA( DarsadC, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();

_SECTION_BEGIN("MA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 9, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 
_SECTION_END();