Skip to main content

CLK RSI for Amibroker (AFL)

lupinnon about 13 years ago Amibroker (AFL)

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

My modified RSI

Indicator / Formula

Copy & Paste Friendly
/// CLK RSI /// 
 
X= Param("RSI",14,1,50,1); 
R=RSI(X); 
Plot(R,"",colorGrey40); 
 
Y= Param("Smooth 1",7,1,9,1); 
Y1= EMA(R,Y); 
Y2= EMA(Y1,Y); 
Diff= Y1 - Y2; 
Y3= Y1 + Diff; 
Plot(Y3,"Chaloke RSI",colorRed,4); 
 
Z= Param("Smooth 2",9,1,25,1); 
Z1= EMA(Y3,Z); 
Z2= EMA(Z1,Z); 
Diff= Z1 - Z2; 
Z3= Z1 + Diff; 
Plot(Z3,"signal",colorYellow);

1 comments

about 13 years ago

Hello
Like your RSI. Could you resubmit this CLK RSI and add arrows in formula to show when the crossover occurs.
Thanks member of WiseStockTrader and amibroker user! Dan M.

Leave Comment

Please login here to leave a comment.