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

LANDIS Modified for Amibroker (AFL)
isfandi
about 13 years ago
Amibroker (AFL)

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

The HollowSmallCircle Signal mean speculative or opportunity for action, confirm trend changes with a SmallArrow. Good Luck
Regards,
Isfandi

Screenshots

Similar Indicators / Formulas

weighted moving average scan
Submitted by naninn about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Kase CD V2batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx over 9 years ago
EMA System Ribbon
Submitted by yo123 about 13 years ago
Three-Bar Inside Bar Pattern
Submitted by EliStern about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("LANDIS Color Modified");
x = ((StochK(9,3)*0.05)+(StochK(182,9)*0.43)+(StochK(34,13)*0.26)+(StochK(34,8)*0.16)+(StochK(21,5)*0.10));
y = MA(x,15);

Plot(x,"LANDIS", IIf(x > Ref(x,-1), colorGreen,colorRed), styleThick);
Plot(Y,"3-Week", IIf(y > Ref(y,-1), colorGreen,colorRed), styleThick);

Cond1= Graph0<Graph1 AND Graph0 > Ref (Graph0,-1);
Cond2= Graph0>Graph1 AND Graph0 < Ref (Graph0,-1);
colore= IIf(Cond1,colorBrightGreen,IIf(Cond2,colorRed,0));
PlotShapes(shapeHollowSmallCircle*Cond1,Colore,0,Graph0,-6);
PlotShapes(shapeHollowSmallCircle*Cond2,Colore,0,Graph0,6);

Buy= Cross (x,Y);
Sell= Cross (y,x);
Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy); 
PlotShapes(shapeUpArrow*Buy,colorYellow);
PlotShapes(shapeDownArrow*Sell,colorCustom12);

PlotOHLC( x, x, y, y, "", IIf(x > y,colorLime, colorOrange),styleNoLabel|styleCloud );
PlotGrid(40, colorLightGrey);
PlotGrid(80, colorLightGrey);
GraphXSpace=5;
_SECTION_END();

2 comments

1. Kabir

Isfandi Plz can u tell what is above afl of LANDIS Modified.

Thanks

2. owied

Hi,
Thanks
I hope to search for the stocks that hit the bottom and the shares that reached the top

Leave Comment

Please login here to leave a comment.

Back