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

RSI - With Overbought & Oversold coloured for Amibroker (AFL)
st3v3
over 9 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 7)
Tags:
oscillator, amibroker

This is RSI Indicator, with coloured Overbought and Oversold area , to make easier to analyze.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI");
SetChartOptions(0,0,ChartGrid30|ChartGrid70,0,100);
periods = Param( "Periods", 14, 1, 200, 1 );
z = RSI( periods);

RSILineColor = ParamColor("RSI Line Color",ColorRGB(127,0,83));
RSIOverboughtColor = ParamColor("RSI Overbought Color",ColorRGB(127,0,83));
RSIOversoldColor = ParamColor("RSI Oversold Color",colorRed);


Plot( z, _DEFAULT_NAME(), RSILineColor , styleLine  );
Plot( 50, _DEFAULT_NAME(), RSILineColor , styleDashed|styleNoTitle  );
Plot( 70, _DEFAULT_NAME(), RSILineColor , styleLine|styleNoTitle  );
Plot( 30, _DEFAULT_NAME(), RSILineColor , styleLine|styleNoTitle  );
PlotOHLC(z,z,50,z,"",IIf(z>50,RSIOverboughtColor,RSIOversoldColor),styleCloud|styleClipMinMax,30,70);


_SECTION_END();

4 comments

1. mcxlearner

good

2. abhijeet_f

thanks.. its amazing..

3. mouse123

Simple and Easy Understanding indicator

4. mouse123

Simple and Easy Understanding indicator

Leave Comment

Please login here to leave a comment.

Back