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

Weissman RSI & MA System for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, trading system, amibroker, exploration

Simple trading system using rsi and moving average. Includes exploration for finding signals.

Screenshots

Similar Indicators / Formulas

Volume Zone
Submitted by majed 7 almost 11 years ago
NIFTY HUNTER
Submitted by jaipal7786 almost 11 years ago
demark overbought and oversold indicator
Submitted by pras almost 14 years ago
Smooth Rsi Buy
Submitted by aminctg over 13 years ago
ADX color side way
Submitted by four7 over 13 years ago
CCI + DPO + MACD
Submitted by sm_d almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Weissman RSI & MA System");
Plot (RSI (9), "RSI-9", colorRed);
Plot (RSI (14), "RSI-14", colorBlue);
Plot( 30, "", colorBlack, styleNoLabel);
Plot( 70, "", colorBlack, styleNoLabel);

Buy= Ref (RSI (9), -1) < 35;
PlotShapes(shapeUpArrow*Buy,colorGreen);
Sell = Cross (Ref (RSI (14), -1), 80);
PlotShapes(shapeDownArrow*Sell,colorRed);

Filter = Buy OR Sell;

AddColumn( Buy, "Buy", 1);
AddColumn(Sell, "Sell", 1);
AddColumn(Close,"Close",1.2);
AddColumn(Volume,"Volume",1.0);
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back