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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
COMBINING RSI WITH RSI for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
oscillator, trading system, amibroker
From Stocks and Commodities Magazine of January 2011
Screenshots
Similar Indicators / Formulas
Rahul Mohindar Oscillator (RMO)
Submitted
by kaiji almost 16 years ago
Heikin-Ashi Candles Oscillator for Long term
Submitted
by NTA almost 13 years ago
Price Oscillator
Submitted
by ariful_islam about 15 years ago
ZeroLag RSI with Buy/Sell
Submitted
by erecruiters over 14 years ago
Trending Wave 2 System
Submitted
by Dryden almost 14 years ago
Indicator / Formula
Copy & Paste Friendly
function KST()
{
p1 = MA( ROC(Close,10), 10);
p2 = MA( ROC( Close, 15), 10 );
p3 = MA( ROC( Close, 20), 10 ) ;
p4 = MA( ROC( Close, 30), 15);
return p1 + 2 * p2 + 3 * p3 + 4 * p4;
}
Buy = Cross( RSI( 17 ), 60 ) AND C > MA( C, 40 );
Sell = Cross( 40, RSI( 17 ) ) OR C < MA( C, 40 );
InDownTrend = Flip( Sell, Buy );
CBuy = Cross( RSI( 5 ), 60 ) AND C > MA( C, 10 ) AND InDownTrend;
CSell = ( Cross( 40, RSI( 5 ) ) OR C < MA( C, 10 ) ) AND InDownTrend;
Buy = Buy OR CBuy;
Sell = Sell OR CSell;
Plot( KST(), "KST", colorGreen );
Plot( RSI( 5 ), "RSI5", colorRed );
Plot( RSI( 17 ), "RSI17", colorBlue );
0 comments
Leave Comment
Please login here to leave a comment.
Back