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

Super Meisel for Amibroker (AFL)

Rating:
3 / 5 (Votes 7)
Tags:
amibroker, trading system

Knowing “best buy point” when stock is going down…. tribute to Mr.Hans

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
Pride System Modified
Submitted by niladri about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("supermeisels");
/* SuperMeisels by Hans 20 Nov 2004 */

Lim=Param("Limite",5.5,4,9,0.1);

change = IIf( Close > Ref( Close, - 1 ), 1,
IIf( Close < Ref( Close, -1 ), -1, 0 ) ) ;
changeL = IIf( Low > Ref( Low, - 1 ), 1,
IIf( Low < Ref( Low, -1 ), -1, 0 ) ) ;
changeH = IIf( High > Ref( High, - 1 ), 1,
IIf( High < Ref( High, -1 ), -1, 0 ) ) ;

meisels = Sum( change,10 );
meiselslow = Sum( changel,10 );
meiselshigh = Sum( changeh,10 );


Plot(Lim,"",colorBlack,1);
Plot(-Lim,"",colorBlack,1);
Plot(meisels,"meisels",colorBlue,1);
Plot(meiselslow,"meiselslow", colorGreen,1);
Plot(meiselshigh,"meiselshigh", colorRed,1);

meiBuy=Cross(meiselslow,-Lim) OR Cross(meisels,-Lim) OR Cross(meiselshigh,-Lim);
meisell=Cross(Lim,meiselslow) OR Cross(Lim,meisels) OR Cross(Lim,meiselshigh);

PlotShapes(shapeUpArrow*(meibuy), colorGreen,0,Graph1,-10); 
PlotShapes(shapeDownArrow*(meisell), colorRed,0,Graph0,-10); 
GraphXSpace=3;
_SECTION_END();

1 comments

1. sirifem21

very good indicator, very useful for entry and exit .

Leave Comment

Please login here to leave a comment.

Back