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 ....
With 90% Sucess Rate for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | Opt1 = Optimize ( "DX Level" , 16, 10, 30, 1); Opt2 = Optimize ( "Period" , 15, 10, 50, 1); // n n = Opt2; H_P = ( HHV ( High ,n) - LLV ( High ,n))/2 + LLV ( High ,n); // HIGH PRICE L_P = ( HHV ( Low ,n) - LLV ( Low ,n))/2 + LLV ( Low ,n); // LOW PRICE Buy = Cross ( Close , H_P) AND ADX (10) > Opt1 AND V >100000 AND C > O ; Sell = Cross (L_P, Close ); Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); |