Australian (ASX) Stock Market Forum

Metastock Formula Help

Joined
17 September 2008
Posts
20
Reactions
0
Hi Guys,
Hopethis is the correct place to post this. Need some help with a Metastock formula so i'm hoping there are some Metastock Pro's out there.

I want to % increase today compared to yesterday in a column. Close to close.

Then the % increase for yesterday compared to the day before yesterday in another column. Close to close.

My purpose is to determine the level of momentum continuity.

Thanks in advance :)

Herle
 
Try this:

for the first column you want:
100*(C-ref(c,-1))/ref(c,-1)



for the second column you want:
100*(ref(c,-1)-ref(c,-2))/ref(c,-2)
 
Top