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 based Buy-sell for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | _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); |