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 ....
ATR Stop Loss System for Amibroker (AFL)
Rating:
2 / 5 (Votes 4)
Tags:
trading system, amibroker, stop loss
ATR based stop loss with buy and sell signals.
Screenshots
Similar Indicators / Formulas
Ensign Volatility Stop
Submitted
by kaiji over 15 years ago
KPL System
Submitted
by na1982 about 15 years ago
Chandelier
Submitted
by tallulah almost 15 years ago
Buy Sell & Trailing SL & TGL
Submitted
by morgen about 13 years ago
Visual ATR Stop Loss System
Submitted
by siivaramm over 14 years ago
trailing sl
Submitted
by rsuresh13 about 14 years ago
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | _SECTION_BEGIN ( "ERO ATR BUY SELL" ); ero = Param ( "ATR multiple" , 2.8, 0.5, 10, 0.1 )* Param ( "ATR period" , 10, 3, 50 ); ero_col= ParamColor ( "Color" , colorCycle ); r= HHV ( H ,ero); s= LLV ( L ,ero); ab= IIf ( H > Ref (r,-1),1, IIf ( L < Ref (s,-1),-1,0)); ac= ValueWhen (ab!=0,ab,1); sl= IIf (ac==1,s,r); Plot (sl, _DEFAULT_NAME (), ero_col, styleStaircase ); // or styleaArea Buy = Cross ( H ,sl); Sell = Cross (sl, L ); PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorGreen , 0, L , Offset=-40); PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorLime , 0, L , Offset=-50); PlotShapes ( IIf ( Buy , shapeUpArrow , shapeNone ), colorWhite , 0, L , Offset=-45); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorRed , 0, H , Offset=40); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorOrange , 0, H , Offset=50); PlotShapes ( IIf ( Sell , shapeDownArrow , shapeNone ), colorWhite , 0, H , Offset=-45); _SECTION_END (); _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back