Anchored momentum
The four indicators in member Rudy Stefenel is "anchored Momentum" can easily be created in MetaStock. First, choose Indicator Builder from the menu Tools. If you have MetaStock 6,5 enter the following formula:
General anchored momentum w / Exponential Smoothing
MomPer: = Input ("Momentum periods", 1,1000,10);
SmaPer: = Input ("Simple Moving Average period", 1,1000,7);
EmaPer: = Input ("exponential moving average period", 1,1000,7);
100 * ((Mov (close, EMAPer, E) / Ref (Mov (close, SmaPer, S), ((SmaPer - 1) / 2)
- MomPer)) - 1)
General anchored momentum
MomPer: = Input ("Momentum periods", 1,1000,10);
SmaPer: = Input ("Simple Moving Average period", 1,1000,7);
100 * ((CLOSE / Ref (Mov (close, SmaPer, S), ((SmaPer - 1) / 2) - MomPer)) - 1)
Most anchored momentum w / Exponential Smoothing
MomPer: = Input ("Momentum periods", 1,1000,10);
SmaPer: = Input ("Simple Moving Average period", 1,1000,7);
EmaPer: = Input ("exponential moving average period", 1,1000,7);
100 * ((Mov (close, EmaPer, E) / Mov (close, (2 * MomPer) + 1, S)) - 1)
Most anchored momentum
MomPer: = Input ("Momentum periods", 1,1000,10);
SmaPer: = Input ("Moving Average period", 1,1000,7);
100 * ((CLOSE / Mov (close, (2 * MomPer) + 1, S)) - 1)
Drag any of the above indicators Indicator QuickList to the desired graph. MetaStock 6,5 will prompt you to enter values â â for certain parameters. If you have a previous version of MetaStock, you will need to enter values â â in the following formulas instead of using MomPer, SmaPer, and EmaPer variables.
General anchored momentum w / Exponential Smoothing
100 * ((Mov (close, EMAPer, E) / Ref (Mov (close, SmaPer, S), ((SmaPer - 1) / 2) - MomPer)) - 1)
General anchored momentum
100 * ((CLOSE / Ref (Mov (close, SmaPer, S), ((SmaPer - 1) / 2) - MomPer)) -1)
Most anchored momentum w / Exponential Smoothing
100 * ((Mov (close, EmaPer, E) / Mov (close, (2 * MomPer) + 1, S)) - 1)
Most anchored momentum
100 * ((CLOSE / Mov (close, (2 * MomPer) + 1, S)) - 1)
Tuesday, April 12, 2011
Subscribe to:
Post Comments (Atom)
Popular Posts
Powered by Blogger.
No comments:
Post a Comment