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

Elder's Impulse System Price Chart for Amibroker (AFL)
ippfx
over 12 years ago
Amibroker (AFL)

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

Elder’s Impulse System

http://stockcharts.com/school/doku.php?id=chart_school:chart_analysis:elder_impulse_system

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago
Horizontal Live Priceline Tool
Submitted by northstar about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Impulse System Price Chart");
SetChartOptions(0,chartShowArrows|chartShowDates);

r1 = Param( "Fast avg", 12);
r2 = Param( "Slow avg", 26);
r3 = Param( "Signal avg", 9);
period = Param("Period", 13);

ml = MACD(r1, r2);
sl = Signal(r1,r2,r3);
mh = ml - sl;
eh = ROC(MA(C,period),1);
MHtrend = IIf(mh > Ref(mh, -1), 1, -1);
MAtrend = IIf(eh > Ref(eh, -1), 1, -1);

up = MHtrend >0 AND MAtrend >0;
dn = MHtrend <0 AND MAtrend <0;

if (GetPriceStyle() == styleCandle) {
	SetBarFillColor( IIf(C > O, colorWhite, IIf(up, colorSeaGreen, IIf(dn, colorPink, colorLightBlue))));
}
BarColor = IIf(up, colorDarkGreen, IIf(dn, colorRed, colorBlue));

_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", BarColor, styleNoTitle |GetPriceStyle() ); 
_SECTION_END();

1 comments

1. gajananprofits@yahoo.co.in

how to use?

Leave Comment

Please login here to leave a comment.

Back