dynamic RSI for Amibroker (AFL)
udomvet over 14 years ago Amibroker (AFL)
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.
good one great