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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Price Momentum Oscillator for Amibroker (AFL)
1290mark
almost 3 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, oscillator

Tried to develop Price Momentum Oscillator, reference DecisionPoint Price Momentum Oscillator (PMO). Please check before any use.

Indicator / Formula

Copy & Paste Friendly
// 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