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 2 with Averages for Amibroker (AFL)

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

Buy by RSI below 5 and sell by the simple average 7 or simple average 13

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago

Indicator / Formula

Copy & Paste Friendly
Media7 = MA(Close, 7);
Media13 = MA(Close, 13);
mEDIA20 = MA(Close, 20);


Buy =  RSI(2) < 5;
Sell = IIf(MEDIA20 > Ref(MEDIA20, -1), Cross(Close, MEDIA13), Cross(Close, MEDIA7));

// trade on next bar open
SetTradeDelays( 0, 0, 0, 0 );
BuyPrice = SellPrice = Close; 

// trade size: 100% of current portfolio equity
SetPositionSize( 100, spsPercentOfEquity );

2 comments

1. guimbraga89

can you help me, i want to do a setup like this:

buy rsi (2) below 5

sell when the average of 13 cross the rsi 2

2. johnnypareek

hope this will work. assuming that average 13 means rsi(2) 13 period average. If u mean to price then just replace rsi(2) to close.

Media7 = MA(Close, 7);
Media13 = MA(Close, 13);
mEDIA20 = MA(Close, 20);
 
 
Buy =  RSI(2) < 5;
/*Sell = IIf(MEDIA20 > Ref(MEDIA20, -1), Cross(Close, MEDIA13), Cross(Close, MEDIA7));*/
sell=cross(ma(rsi(2),13),rsi(2);
 
// trade on next bar open
SetTradeDelays( 0, 0, 0, 0 );
BuyPrice = SellPrice = Close;
 
// trade size: 100% of current portfolio equity
SetPositionSize( 100, spsPercentOfEquity );

Leave Comment

Please login here to leave a comment.

Back