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

SmoothRSI for Amibroker (AFL)

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

SmoothRSI INDICATOR

Screenshots

Similar Indicators / Formulas

Cole by Marek Chlopek
Submitted by mamunbaf9117 over 13 years ago
Graphic modify Gator of Bill William
Submitted by bobylam over 13 years ago
NIFTY HUNTER
Submitted by jaipal7786 almost 11 years ago
Weissman RSI & MA System
Submitted by jarjis_sk about 14 years ago
STD_STK Multi
Submitted by kaiji about 14 years ago
Volume Zone
Submitted by majed 7 almost 11 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI_LONG 30 mt Intraday");
Plot (EMA (RSI(7),5), "SmoothRSI", colorYellow,styleThick);

A=EMA (RSI(14),5);
B=EMA (RSI(21),5);
Plot(A,"",colorBlack, styleLine|styleThick);
Plot(B,"",colorBlack, styleLine|styleThick);

PlotOHLC( 0, A , B ,B , "Cloud", IIf(A > B ,colorBrightGreen,ColorRGB(150,0,50)), styleCloud|styleNoLabel);


Color30=IIf(V>EMA(V,10),colorBrightGreen,colorRed);
Color50=IIf(V>1.5*EMA(V,10),colorBrightGreen,colorRed);
Color70=IIf(V>2*EMA(V,10),colorBrightGreen,colorRed);


Plot (50, "", color50,styleDots, styleNoLabel);
Plot (30, "", color30,  styleNoLabel);
Plot (70, "", color70,  styleNoLabel);

Buy=Cross( EMA (RSI(7),5), EMA (RSI(21),5)) AND EMA (RSI(7),5)<50;

Filter =V > 1.5*EMA (V, 10)AND EMA (RSI(7),5)<40 AND   Cross( EMA (RSI(7),5), EMA (RSI(21),5));

AddColumn(Close,"Close",1.2);
AddColumn(Volume,"Volume",1.0);
AddColumn(V/EMA(V,20),"Vspurt",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 );

0 comments

Leave Comment

Please login here to leave a comment.

Back