Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
RSI with modified rules for Amibroker (AFL)
Rating:
3 / 5 (Votes 2)
Tags:
oscillator, amibroker
I hope this formula of mine will help traders.
Similar Indicators / Formulas
3 Days Track
Submitted
by janet0211 over 14 years ago
Trading Volume Statistic
Submitted
by tuanstock1 over 10 years ago
Ergodic Oscillator
Submitted
by dljtrader almost 14 years ago
BoH Risk Aversion Indicator
Submitted
by genkumag almost 13 years ago
Chande Momentum Oscillator
Submitted
by klimpek almost 14 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("MODIFIED RSI"); RP = Param("RSI",14,2,20,1); UL= Param("Upper Limit",70,0,100,1); LL= Param("Lower Limit",30,0,100,1); PlotGrid(UL,colorBlue); PlotGrid(LL,colorBlue); R= RSIa(C, RP); Plot(R, "MODIFIED RSI", colorBlue, styleLine); PlotOHLC( R,R,50,R, "", IIf( R > 50, colorRed , colorGreen ), styleCloud | styleClipMinMax, LL, UL ); _SECTION_END();
3 comments
Leave Comment
Please login here to leave a comment.
Back
Friends, there was a small mistake in typing the formula while uploading in this website.
Please but this _ before section in starting, so that formula works smooth.
Regards,
Raj
Thanks, I fixed it up.
Good AFL. Thank you.