Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
RSI Cloud for Amibroker (AFL)
it’s a triple RSI system.
you have to analyze how it works.
…
Similar Indicators / Formulas
Indicator / Formula
p = Param( "Periods", 30, 1, 200, 1 ); Plot( RSI( p ), "RSI 30", colorBlue, ParamStyle("RSI Style", styleThick) ); Plot(30, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel); Plot(50, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel); Plot(70, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel); Plot(0, "",colorLime,styleNoLine|styleNoTitle|styleNoLabel); Plot(100, "",colorLime,styleNoLine|styleNoTitle|styleNoLabel); MyPort = 25000;//Enter Portfolio Value color = IIf( RSI(14) > RSI(21), ParamColor( "Span A Color", ColorRGB( 0, 255, 0 ) ), ParamColor( "Span B Color", ColorRGB( 255, 104, 32 ) ) ); PlotOHLC ( RSI(14), RSI(14), RSI(21), RSI(21), "Cloud", Color, styleCloud | styleNoLabel, Null, Null, 0, -2 );
0 comments
Leave Comment
Please login here to leave a comment.
Back