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

AJDX System for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

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

This is a trading system based on the ADX line and should only be used as a basic exploration to determine the direction of a trend. The Buy indicator is of most value and changes to fixed variables can be done to fit different markets.

Author Jaco Jonker

Similar Indicators / Formulas

For Intraday Trading
Submitted by NTA over 11 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 crossover
Submitted by Ketan-0 about 13 years ago

Indicator / Formula

Copy & Paste Friendly
ct = 100;
resa = PDI(14)/MDI(14);
maxp = HHV(PDI(14),ct);
minp = LLV(PDI(14),ct);
maxm = HHV(MDI(14),ct);
minm = LLV(PDI(14),ct);
area1 = maxp - minm;
area2 = maxm - minp;
dif1 = PDI(14) - MDI(14);
dif2 = MDI(14) - PDI(14);

Buy = dif2 < Ref(dif2,-1) 
          AND dif2/area2 > 0.75
          AND Ref(Close,-ct) > 1 
          AND (Sum(V,5)/5) > 100000 
          AND Close > 10; 
Sell = dif1 < Ref(dif1,-1) 
          AND dif1/area1 > 0 
          OR Low < (HighestSince(Buy,High,1)*0.95); 

0 comments

Leave Comment

Please login here to leave a comment.

Back