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 ....
CCI CROSS OVER SCAN for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 | _SECTION_BEGIN ( "Unnamed 52" ); Buy = Cross ( CCI (20), EMA ( CCI (20),9)); Sell = Cross ( EMA ( CCI (20),9), CCI (20)); // trade on next bar open SetTradeDelays ( 1, 1, 1, 1 ); BuyPrice = SellPrice = Open ; // trade size: 25% of current portfolio equity SetPositionSize ( 25, spsPercentOfEquity ); _SECTION_END (); |