Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
RSI Cloud Basic for Amibroker (AFL)
Copy & Paste Friendly
Back
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 45 46 47 48 49 50 51 52 53 54 55 | "MAV's Brain Storm" ; SetBarsRequired (500,0); _SECTION_BEGIN ( "RSI_LONG 30 mt Intraday" ); showsig= ParamList ( "Show Buy and sell signals?" , "Yes|No" ); //n1=7,n2=14,n3=21 n1=7; n2=n1*2; n3=n1*3; Plot ( EMA ( RSI (n1),5), "SmoothRSI" , colorYellow , styleThick ); Cc= EMA ( RSI (n1),5); A= EMA ( RSI (n2),5); B= EMA ( RSI (n3),5); Plot (A, "RSI 14" , ColorRGB (100,150,150), styleLine ); Plot (B, "" , ColorRGB (100,150,150), styleLine ); PlotOHLC ( 0, A , B ,B , "Cloud" , IIf (Cc > b AND Cc>50 , colorBrightGreen , IIf (cc>b AND cc<50, colorBlue , IIf (cc<b AND cc>50, colorBlue , colorRed ))), styleCloud | styleNoLabel ); //Plot( diff, "RSI Histogram", ParamColor("Histogram color", colorBrightGreen ), ParamStyle("Histogram style", styleHistogram | styleNoLabel, maskHistogram ) ); Color30= IIf ( V > EMA ( V ,10), colorBrightGreen , colorRed ); Color50= IIf ( V >1.5* EMA ( V ,10), colorBrightGreen , colorRed ); Color70= IIf ( V >2* EMA ( V ,10), colorBrightGreen , colorRed ); Plot (50, "" , color50, styleDots , styleNoLabel ); Plot (30, "" , color30, styleNoLabel ); Plot (70, "" , color70, styleNoLabel ); if (showsig== "Yes" ) { Buy = Cross (Cc,a); Sell = Cross (b,Cc); Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); shape= Buy * shapeUpArrow + Sell * shapeDownArrow ; PlotShapes ( shapeUpArrow * Buy , colorLime , 0, A, -35 ); PlotShapes ( shapeDownArrow * Sell , colorRed , 0, A, -35 ); } Filter = V > 1.5* EMA ( V , 10) AND EMA ( RSI (7),5)<40 AND Cross ( EMA ( RSI (7),5), EMA ( RSI (21),5)); AddColumn ( Close , "Close" ,1.2); AddColumn ( Volume , "Volume" ,1.0); AddColumn ( V / EMA ( V ,20), "Vspurt" ,1.0); AddColumn ( RSI (), "RSI" , 1.2 ); AddColumn ( ROC ( Close , 15 ), "ROC(15)" , 1.2 ); AddColumn ( MFI (), "MFI" , 1.2 ); AddColumn ( OBV (), "OBV" , 1.2 ); AddColumn ( CCI (), "CCI" , 1.2 ); AddColumn ( Ultimate (), "Ultimate" , 1.4 ); _SECTION_END (); |