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

Anchored Momentum for Metastock
carla
over 13 years ago
Metastock

Rating:
0 / 5 (Votes 0)
Tags:
metastock, oscillator

Anchored Momentum, by Rudy Stefenel, is a modified momentum indicator to capture the relative momentum. Anchored momentum uses simple moving averages as the reference for deriving the momentum, thereby anchoring it to that MA rather than the “value of the close n bars back”.

Mr.Stefenel suggests using this like other oscillators — crossing signal line, crossing zero, divergences.

Screenshots

Files

Indicator / Formula

Copy & Paste Friendly
MomPer := Input("Momentum Periods",1,1000,10);
SmaPer := Input("Simple Moving Average Periods",1,1000,7);
100 * ((CLOSE / Ref(Mov(CLOSE, SmaPer, S),((SmaPer- 1)/2) - MomPer)) - 1)
Copy & Paste Friendly
MomPer := Input("Momentum Periods",1,1000,10);
SmaPer := Input("Simple Moving Average Periods",1,1000,7);
EmaPer := Input("Exponential Moving AveragePeriods",1,1000,7);
100 * ((Mov(CLOSE, EmaPer, E) / Mov(CLOSE,(2 * MomPer)+ 1, S) )- 1)
Copy & Paste Friendly
MomPer := Input("Momentum Periods",1,1000,10);
SmaPer := Input("Moving Average Periods",1,1000,7);
100 * ((CLOSE / Mov(CLOSE, (2 * MomPer) +1, S) )- 1)
Copy & Paste Friendly
MomPer := Input("Momentum Periods",1,1000,10);
SmaPer := Input("Simple Moving Average Periods",1,1000,7);
EmaPer := Input("Exponential Moving AveragePeriods",1,1000,7);
100 * ((Mov(CLOSE, EMAPer, E) /
Ref(Mov(CLOSE,SmaPer,S), ((SmaPer - 1)/2) - MomPer)) - 1)

0 comments

Leave Comment

Please login here to leave a comment.

Back