Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Conventional RSI - Chartink for Amibroker (AFL)
This is the RSI different from amibroker RSI and it was a non smoothed traditional n conventional RSI. Which is similar to chartink and chhartnexus.
Screenshots
Indicator / Formula
//RSI
// this is different from amibroker inbuilt RSI and similar to the chartink or chartnexus.
//created on 18/12/2015 by MKP Manikandan
Period = Param("Period", 14, 2, 100 );
Diff = C - Ref( C, -1 );
Up = Max( Diff, 0 );
Dn = Max( -Diff, 0 );
UpSum = Sum( Up, Period );
DnSum = Sum( Dn, Period );
RS = IIf( DnSum != 0, UpSum / DnSum, 100 );
CRSI = 100 - 100 / ( 1 + RS );
Plot( CRSI, "CRSI"+Period, colorBlue );
Plot(70,"Overbought",colorRed,styleLine);
Plot(30,"Oversold",colorGreen,styleLine);
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back