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 ....
Price Chanel 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 32 33 | Top = Ref ( HHV ( H , 25), -1); Bot = Ref ( LLV ( L , 25), -1); Mid1 = (Top+Bot)/2; Mid2 = (Top+Mid1)/2; Mid3 = (Bot+Mid1)/2; Plot (Top, "Top" , colorBlue ); Plot (Bot, "Bot" , colorBlue ); Plot (Mid1, "Mid1" , colorBlue ); Plot (Mid2, "Mid2" , colorRed ); Plot (Mid3, "Mid3" , colorRed ); Top = Ref ( HHV ( H , 25), -1); Bot = Ref ( LLV ( L , 25), -1); Mid1 = (Top+Bot)/2; Mid2 = (Top+Mid1)/2; Mid3 = (Bot+Mid1)/2; Buy = Cross ( Close , Mid1); BuyPrice = Mid1; Sell = Cross (Mid2, Close ); SellPrice = Mid2; Short = Cross (Mid3, Close ); ShortPrice = Mid3; Cover = Cross ( Close , Mid1); CoverPrice = Mid1; Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); Short = ExRem ( Short , Cover ); Cover = ExRem ( Cover , Short ); |