Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
ATR Breakouts for Amibroker (AFL)
Uses ATR channel breakouts. Excellent one for positional trades and not suitable for intraday
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 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
Leave Comment
Please login here to leave a comment.
Back
can you please tell us how to use this? thanks!