Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
AO (Awesome Oscillator) Indicator for Amibroker (AFL)
AO ( Awesome Oscillator) Indicator code.
Please note this is an indicator to support Alligator Trend Following system.
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | _SECTION_BEGIN ( "Awesome Oscillator" ); AO = MA (Avg, 5) - MA (Avg, 34); AOUpBar = AO > Ref (AO, -1); AODownBar = AO < Ref (AO, -1); Plot (AO, "AO" , IIf (AOUpBar, colorGreen , colorRed ), styleHistogram | styleThick ); Plot (0, "" ,15); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back