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

ATR Breakouts for Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, channel

Uses ATR channel breakouts. Excellent one for positional trades and not suitable for intraday

Similar Indicators / Formulas

Adaptive Price Channel
Submitted by claux almost 13 years ago
Wilson Relative Price Channel
Submitted by kaiji about 14 years ago
Donchian Channels
Submitted by rythm.arora over 13 years ago
64 channel
Submitted by octobpra over 13 years ago
Square of Nine Roadmap Charts
Submitted by kaiji about 14 years ago

Indicator / Formula

Copy & Paste Friendly
Plot( C, "Close", colorBlack, styleNoTitle | ParamStyle("Style") | GetPriceStyle() );


_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 50, 2, 300, 1, 10 );
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style")|styleNoTitle ); 
_SECTION_END();


Plot( EMA(Close,50) + (2*ATR(20)), "Long Entry Threshold", colorGreen, styleLine|styleThick );
Plot( EMA(Close,50) - (2*ATR(20)), "Short Entry Threshold", colorRed, styleLine|styleThick );


Plot( EMA(Close,50) + (ATR(20)), "Short Stop Loss", colorViolet, styleLine|styleDashed );
Plot( EMA(Close,50) - (ATR(20)), "Long Stop Loss", colorBrown, styleLine|styleDashed );

1 comments

1. sutharnehal

can you please tell us how to use this? thanks!

Leave Comment

Please login here to leave a comment.

Back