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

DMI & Moving Average System for Amibroker (AFL)

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

Rombout Kerstens Combining DMI And Moving Average For A Eur/Usd Trading System, describes a technique for long entry and exit that uses both J. Welles Wilders Dmi (directional movement indicator) and a moving average.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 almost 14 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 10 years ago
Kase CD V2batu
Submitted by batu1453 over 10 years ago
Ichimoku
Submitted by prashantrdx over 10 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas almost 14 years ago
LANDIS Modified
Submitted by isfandi almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
LenMa = Param("MA period", 30, 10, 100 ); 
LenDMI = Param("DMI period", 14, 5, 100 ); 

DmiLong = PDI( LenDMI ) > MDI( LenDMI ); 
DmiShort = PDI( LenDMI ) < MDI( LenDMI ); 

MALong = C > MA( C, LenMA ); 
MAShort = C < MA( C, LenMA ); 

Buy = DMILong AND MALong; 
Short = DMIShort AND MAShort; 
Sell = Short; 
Cover = Buy;

1 comments

1. northie

Not working on hourly chart.

Leave Comment

Please login here to leave a comment.

Back