Skip to main content

Cross stochastic for Amibroker (AFL)

matant over 15 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 2)
  • Tags:
    oscillator, trading system, amibroker

This trading system is based on the cross from the slow and the fast stochastic with Samuel Monk number series.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Cross Stochastic");

uptrend= IIf( StochK(17,9) > StochD(17,9,3), 1, 0 );
downtrend=IIf( StochK(17,9)<StochD(17,9,3), 1, 0 );
crossBuy=Cross(StochK(17,9),StochD(17,9,3));
crossSell=Cross(StochD(17,9,3),StochK(17,9));

 Plot( StochD(17,9,3), _DEFAULT_NAME(), colorRed , ParamStyle("Style") );

Plot( StochK(17,9), _DEFAULT_NAME(), colorBlue , ParamStyle("Style") );


Buy =  Ref(crossBuy,-2)  AND  Ref(StochD(9,5,3),-2) <20 AND Ref(uptrend,-1) AND uptrend ;
Sell = crossSell  AND StochD(9,5,3) > 50 ;

Short=Sell;
Cover=Buy;

PlotShapes( IIf(Buy, shapeUpArrow,0) , colorGreen ,0,StochD(17,9,3),-10);
PlotShapes( IIf(Sell, shapeDownArrow,0) , colorRed ,0, StochD(17,9,3),-10);


_SECTION_END();

1 comments

about 6 years ago

Hi
Why it’s bit different from Trading View Stochastic RSI 14, 14, 3, 3
Any suggestions please how to make it similar to that

Leave Comment

Please login here to leave a comment.