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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
ADX indicator for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 | _SECTION_BEGIN ( "ADX" ); range = Param ( "Periods" , 14, 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" ) ); _SECTION_END (); |