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

Smooth Rsi Buy for Amibroker (AFL)

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

This Gives a smoothed Rsi buy signal nice works

Screenshots

Similar Indicators / Formulas

SmoothRSI
Submitted by paragcpatil over 13 years ago
Cole by Marek Chlopek
Submitted by mamunbaf9117 over 13 years ago
Graphic modify Bull & Bear Volume
Submitted by bobylam over 13 years ago
Weissman RSI & MA System
Submitted by jarjis_sk about 14 years ago
Graphic modify Gator of Bill William
Submitted by bobylam over 13 years ago
NIFTY HUNTER
Submitted by jaipal7786 almost 11 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI");
Plot (EMA (RSI(7),5), "SmoothRSI", colorRed);
Plot (EMA (RSI(21),5), "Signal", colorBlue);
Plot (50, "", colorBlack, styleDashed, styleNoLabel);
Plot (30, "", colorDarkGreen,  styleNoLabel);
Plot (70, "", colorDarkGreen,  styleNoLabel);

Buy=Cross( EMA (RSI(7),5), EMA (RSI(21),5)) AND EMA(V,20) >=50000;

Filter =EMA (V, 20) >=50000;

AddColumn(Close,"Close",1.2);
AddColumn(Volume,"Volume",1.0);
AddColumn( RSI(), "RSI", 1.2 );
AddColumn( ROC( Close, 15 ), "ROC(15)", 1.2 );
AddColumn( MFI(), "MFI", 1.2 );
AddColumn( OBV(), "OBV", 1.2 );
AddColumn( CCI(), "CCI", 1.2 );
AddColumn( Ultimate(), "Ultimate", 1.4 );
_SECTION_END();

2 comments

1. merykhi

GOOD ONE SIR AND THANKS FOR SHARING
PRASAD

2. FinFreedom1965

Fairly decent signals, but need to have other filters for confirmation.

Cheers
GK

Leave Comment

Please login here to leave a comment.

Back