Skip to main content

dynamic RSI for Amibroker (AFL)

udomvet over 14 years ago Amibroker (AFL)

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

this is the formula that u can change RSI as you want

Indicator / Formula

Copy & Paste Friendly
prd=14; sm1=21; sm2=5; sm3=5; 
x=50-(MA(RSI(prd),sm1)-RSI(prd)); 
y=MA(x,sm2); 
z=MA(y,sm3); 
Plot(Y,"Dynamic RSI",4,4); 
Plot(Z,"Signal",colorBlue,1); 
PlotGrid(40); 
PlotGrid(60);

1 comments

Leave Comment

Please login here to leave a comment.