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

Mechanical Trading system for Amibroker (AFL)

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

this AFL is based on mechanical trading , and thus removes the fear and greed.

it can be used for EOD as well IEOD live charts . and believe me results are amazing.

Enjoy !

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago

Indicator / Formula

Copy & Paste Friendly
Plot (C,"Price",colorLime,styleBar);
Plot (MA(C,24),"ma 24",colorRed,1);

Plot (MA(C,2),"ma 24",colorYellow,1);
rawrng=HHV(C,50)-LLV(C,50);//calculate the difference betwen highest and lowest clsoe vlaues in the last 50 bars
rngup=(MA(C,24)+rawrng*0.05); // 5% of the rawrange taken as the vicinity band
rngdown=(MA(C,24)-rawrng*0.05); 

k1=MA(C,24);
k2=rngup;
K3=rngdown;

j1= Close > MA( Close, 24 ) AND Open > MA( Close, 24 ) AND Open < rngup ;
j2= Close < MA( Close, 24 ) AND Close > rngdown AND Open < MA( Close, 24) ;

PlotShapes( shapeSmallCircle* j1,colorYellow, 0,H, 10);
PlotShapes( shapeSmallCircle* j2,colorBlue, 0,L, -10);
PlotOHLC(k1,k1,k2,k2,"",colorGrey40, styleCloud);
PlotOHLC(k1,k1,k3,k3,"",colorGrey40, styleCloud);

4 comments

1. aruncb

Looks nice, gr8 work… what r the parameter for buy and sell?

2. administrator

Best way is to read the code. But the gist of it is that it checks that the price is within a percent range of the moving average.

3. anandnst

Excellent work ! amazing indicator

4. chetanwise

It looks very nice. But How can we project buy-Sell ?? closed above band is buy and closed below is sell ?? Or we follow red aversge? Pls guide me.

Leave Comment

Please login here to leave a comment.

Back