Skip to main content

LANDIS Modified for Amibroker (AFL)

isfandi over 15 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

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
over 15 years ago

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

Thanks

2. owied
about 6 years ago

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.