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 ....
SELL WHEN AO AC<=0 for Amibroker (AFL)
Copy & Paste Friendly
Back
SetChartOptions( 0, chartShowArrows|chartShowDates ); _SECTION_BEGIN("Acceleration / Deceleration (AC) Bill Williams"); /*** The trend indicators ***/ P= ParamList("Price", "Close|(H+L)/2|(H+C+L)/3",1); if (P=="Close") A = C; else if (P=="(H+C+L)/3") A = (H+C+L)/3; else A = (H+L)/2; AO=MA(A,5)-MA(A,34); AC=AO-MA(AO,5); SellA= AC<=0 AND AO<=0; Sell= SELLA; _SECTION_END();