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 ....
Good 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 24 | *CREDIT GOES TO ORIGINAL CREATOR, NOT MINE* EnableNulling = ParamToggle ( "NULLing of Data" , "DISABLED|ENABLED" ,0); RM = Param ( "NULL Bars L<-R" ,0,0,1000,1); if ( EnableNulling ) { Z = Null ; LB = LastValue ( BarIndex ()); O = IIf ( BarIndex ()>(LB-RM),Z, O ); H = IIf ( BarIndex ()>(LB-RM),Z, H ); L = IIf ( BarIndex ()>(LB-RM),Z, L ); C = IIf ( BarIndex ()>(LB-RM),Z, C ); } ZChange = Param ( "%Zig" ,0.1,0,1,0.05); Z = Zig ( C ,ZChange); Buy = Z < Ref (Z,1) AND Z < Ref (Z,-1); Sell = Z > Ref (Z,1) AND Z > Ref (Z,-1); Short = Sell ; Cover = Buy ; Plot ( C , "" ,1,128); PlotShapes ( IIf ( Buy , shapeSmallUpTriangle , shapeNone ),5,0, BuyPrice ,0); PlotShapes ( IIf ( Sell , shapeHollowDownTriangle, shapeNone ),4,0, SellPrice ,0); PlotShapes ( IIf ( Cover , shapeHollowUpTriangle, shapeNone ),5,0, CoverPrice ,0); PlotShapes ( IIf ( Short , shapeSmallDownTriangle , shapeNone ),4,0, ShortPrice ,0); |