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 ....
Teply Stan system for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("System Hadron algorithmic system"); 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() ); Cond1=Ref(V,-1)<Ref(V,-50); Cond2=Ref(L,-1)<Ref(L,-2); Cond3=C>BBandBot( C, 50, 1.5 ); Cond4=AccDist()>Ref(AccDist(),-2); ts1=Ref(V,-1)>Ref(V,-50); Ut=ATR(5)>ATR(50); Ollp=Ref(C,-1)<BBandTop( C, 50, 1.5 ); Buy = Cond1 AND Cond2 AND Cond3 AND Cond4; Sell = ts1 AND Ut AND Ollp ; Buy = ExRem(Buy,Sell); Sell = ExRem(Sell,Buy); PlotShapes(shapeUpTriangle*Buy, colorLime, 0, L, -20 ); PlotShapes(shapeDownTriangle*Sell , colorRed, 0, H, -20 ); _SECTION_END();