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 ....
Smart way 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 25 26 27 28 29 30 31 | _SECTION_BEGIN ( "10 Day High Low System" ); pds = Optimize ( "pds" ,10,2,25, 1); CB = LLV ( C ,pds); CS = HHV ( C ,pds); mav = TEMA ( C ,50); Plot ( Ref (CB, -1), "Long setup" , colorBrightGreen ); Plot ( Ref (CS, -1), "Short setup" , colorRed ) ; Plot ( Ref (mav, -1), "MA" , colorGold , styleThick ) ; Buy = C < Ref (CB,-1); Buy = Ref ( Buy ,-1); BuyPrice = O ; Sell = C > Ref (CS,-1); Sell = Ref ( Sell ,-1) ; SellPrice = O ; Buy = ExRem ( Buy , Sell ) ; Sell = ExRem ( Sell , Buy ) ; SetChartOptions ( 0, chartShowDates ) ; GraphXSpace = 5; Plot ( C , "C" ,1, 64); PlotShapes ( IIf ( Buy , shapeSmallUpTriangle , 0), colorWhite , layer = 0, yposition = BuyPrice , offset = 0 ); PlotShapes ( IIf ( Sell , shapeDownArrow ,0), colorYellow , layer = 0, yposition = SellPrice , offset = 0 ); _SECTION_END (); |