Skip to main content

RSI Cloud for Amibroker (AFL)

faststare08 over 13 years ago Amibroker (AFL)

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

it’s a triple RSI system.

you have to analyze how it works.

Indicator / Formula

Copy & Paste Friendly
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.