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 based trading system for Amibroker (AFL)

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

Use this system to know the trend and one can enter the trade based on it. The WMA acts as support and resistance. Good money management can be imposed by trailing stop loss since the moving average can be visualized as an ATR. Though this AFL generates buy and sell arrows which is not accurate and more predictive by interpreting

Screenshots

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Kase CD V2batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx over 9 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Price") ;
SetChartOptions(0,chartShowArrows|chartShowDates);
GraphXSpace=Param("GraphXSpace",25,0,100,1);
Title = EncodeColor(colorGold)+Name()+" - "+EncodeColor(colorBrightGreen)+FullName()+"\n "+
EncodeColor(colorGold)+StrFormat(" - Open %g, Hi %g, Lo %g, Close %g ",O,H,L,C )+EncodeColor(colorBrightGreen)+" - "+Date()+
" - Volume :"+WriteVal(V,1.0);
SetChartOptions(0,chartShowDates);
MyColor = IIf(C > Ref(C,-1),ParamColor("ColorUp", colorGreen),ParamColor("ColorDown", colorRed) );
MyStyle=ParamStyle("Style",styleCandle,maskAll);
Plot( C, "Close", MyColor , MyStyle);
_SECTION_END();
_SECTION_BEGIN("NMAW1");
GPeriode=Param("GPeriode", 13, 2, 500, 1 );
kurs = (High+Close+Low+O)/4;
ma11 = WMA (kurs, GPeriode);
a=C-kurs ;
x=a/2;
starting=ma11 - x;
Plot(starting,"starting",colorGreen,styleStaircase);
Buy= Cross(C , starting ) AND O>starting AND L>starting AND H>starting;
Sell= Cross(starting,C )AND O<starting AND L<starting AND H<starting;;
PlotShapes(IIf(Buy,shapeUpArrow ,shapeNone),colorBlue,0,L,-35);
PlotShapes(IIf(Sell,shapeDownArrow , shapeNone),colorRed,0,H,-35);

1 comments

1. nishantndk

Nice work.

Leave Comment

Please login here to leave a comment.

Back