Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Price Momentum Oscillator for Amibroker (AFL)
Tried to develop Price Momentum Oscillator, reference DecisionPoint Price Momentum Oscillator (PMO). Please check before any use.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | // PMO /* Smoothing Multiplier = (2 / Time period) Custom Smoothing Function = {Close - Smoothing Function(previous day)} * Smoothing Multiplier + Smoothing Function(previous day) PMO Line = 20-period Custom Smoothing of (10 * 35-period Custom Smoothing of ( ( (Today's Price/Yesterday's Price) * 100) - 100) ) PMO Signal Line = 10-period EMA of the PMO Line */ Y = EMA (((( C / Ref ( C ,-1)) * 100)-100),35)*10; PMO = EMA (Y,20); PMOSL = EMA (PMO,10); Plot (PMO, "PMO" , colorBlue , styleLine , Null , Null , 0, 0, 1 ); Plot (PMOSL, "Sl" , colorRed , styleLine , Null , Null , 0, 0, 1 ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back