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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Conventional RSI - Chartink for Amibroker (AFL)

Rating:
2 / 5 (Votes 4)
Tags:
oscillator, amibroker

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

Copy & Paste Friendly
//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