Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Sharefinder's SIROC for Amibroker (AFL)
Very good indicator with Buy/Sell added to enable scan.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | _SECTION_BEGIN ( "SIROC" ); // --- Sharefinder's SIROC --- // prd1 = Param ( "First period" ,36,5,300,1); prd2 = Param ( "Second period" ,8,1,100,1); prdCrs = Param ( "Crossover" ,3,1,300,1); prd2 = prd2*2-1; Src= EMA (( C - EMA ( C ,30)) /( Ref ( EMA ( C ,30),-30)+0.000001),prd1); SIROC =100-100/(1 + IIf ( EMA ( IIf (Src- Ref (Src,-1)<0,-(Src- Ref (Src,-1)),0),prd2)==0, 1000000, EMA ( IIf (Src- Ref (Src,-1)>0,Src- Ref (Src,-1),0),prd2) /( EMA ( IIf (Src- Ref (Src,-1)< 0,-(Src- Ref (Src,-1)),0),prd2)+0.000001))); DTrigger = EMA (SIROC,prdCrs); Plot (siroc, "siroc" , colorBlue ,1); Plot (dtrigger, "trigger" , colorBrown ,1); Plot (90, "90" , colorGrey40 ,1); Plot (10, "10" , colorGrey40 ,1); GraphXSpace = 5; Buy = Cross (siroc,dtrigger); Sell = Cross (dtrigger,siroc); //--- end --- // _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Excellent Indicator