.

Perfect Stochastic Crossover - Amibroker AFL Code

Click Image To Enlarge. Please Rate And Comment.

Perfect Stochastic Crossover

_SECTION_BEGIN("Stochastic %K");
periods = Param( "Periods", 45, 1, 200, 1 );
Ksmooth = Param( "%K avg", 9, 1, 200, 1 );
Plot( StochK( periods , Ksmooth), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("Stochastic %D");
periods = Param( "Periods", 45, 1, 200, 1 );
Ksmooth = Param( "%K avg", 9, 1, 200, 1 );
Dsmooth = Param( "%D avg", 9, 1, 200, 1 );
Plot( StochD( periods , Ksmooth, DSmooth ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();
Previous Post Next Post