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 7 for Amibroker (AFL)
vcd234
over 11 years ago
Amibroker (AFL)

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

Good trading signals, with great back-test result.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Kase CD V2batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
/*RSI 7*/


t=7;
Up=IIf(C>Ref(C,-1),abs(C-Ref(C,-1)),0);
Dn=IIf(C<Ref(C,-1),abs(C-Ref(C,-1)),0);
Ut=Wilders(Up,t);
Dt=Wilders(Dn,t);
RSIt=100*(Ut/(Ut+Dt));
Graph0=RSIt;
TradingHours = TimeNum() >= 100400 AND TimeNum() <= 153000;

Buy = RSIt< 30;
Short = RSIt > 70;
Sell = Cover = 0;

Plot( RSI(7), "RSI", colorRed);
PlotShapes(Buy*shapeUpArrow ,colorGreen);
PlotShapes(Short*shapeDownArrow ,colorRed);

SetChartOptions(0,0,chartGrid30|chartGrid70);

Plot(RSI(7), "RSI Cloud", colorBlue, styleLine);

0 comments

Leave Comment

Please login here to leave a comment.

Back