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

ADX with Buy and Sell for Amibroker (AFL)

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

Trading in the direction of a strong trend reduces risk and increases profit potential. The average directional index (ADX) is used to determine when price is trending strongly. In many cases, it is the ultimate trend indicator. After all, the trend may be your friend, but it sure helps to know who your friends are. In this article in this article, we’ll examine the value of ADX as a trend strength indicator.

For more information click here

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
1 hour stoch
Submitted by siddhisagar over 13 years ago
Simple Chaikin Buy Sell
Submitted by jachyuen over 12 years ago
Nj demand and supply
Submitted by njethva over 11 years ago
Heikin-Ashi Candles Oscillator for Long term
Submitted by NTA over 11 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("ADX");
range = Param("Periods", 50, 2, 200, 1 );
Plot( ADX(range), _DEFAULT_NAME(), ParamColor( "ADX color", colorBlue ), ParamStyle("ADX style", styleThick ) );
Plot( PDI(range), "+DI", ParamColor( "+DI color", colorGreen ), ParamStyle("+DI style") );
Plot( MDI(range), "-DI", ParamColor( "-DI color", colorRed ), ParamStyle("-DI style") );

Buy = Cross(PDI(Range), MDI(Range));
Sell= Cross(MDI(Range), PDI(Range));

PlotShapes(IIf(Buy,shapeUpTriangle,shapeNone),colorGreen,0,20,0);
PlotShapes(IIf(Sell,shapeDownTriangle,shapeNone),colorRed,0,20,0);

0 comments

Leave Comment

Please login here to leave a comment.

Back