logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
royttm  
#1 Posted : Sunday, September 30, 2007 9:25:58 PM(UTC)
royttm

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 3/27/2006(UTC)
Posts: 41
Location: Singapore

Hello Members,

Anyone has any idea what is this "Efficiency Ratio" and how can it helps together with other indicator such as Relative Strength Index for identifying investment in stock purchases?

Is there any available formula of "Efficiency Ratio" for MetaStock?

Appreciate and thanks for your advice.

...Roy

wblam  
#2 Posted : Monday, October 1, 2007 9:56:35 AM(UTC)
wblam

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/25/2006(UTC)
Posts: 79

I have one form the net:

Efficiency Ratio = Net PriceChange / Sum of price changes as positive values

MS formula:

TimePeriods := Input("Time periods",1,10000,10);
(Abs(CLOSE - Ref(CLOSE,-TimePeriods))) /(Sum(Abs(CLOSE-Ref(CLOSE,-1)),TimePeriods))

uasish  
#3 Posted : Saturday, October 6, 2007 11:28:11 AM(UTC)
uasish

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 8/13/2005(UTC)
Posts: 170

Thanks: 7 times

{Market Efficiency Ratio}

pds:= Input("Periods",3,200,8);
Speed:= C - Ref(C, -pds);
Volatility:= Sum(Abs(C - Ref(C, -1)),pds);
Efficiency:= Speed / Volatility;
MER:= Mov(Mov(Efficiency, 5,E),3,E);
MER;

royttm  
#4 Posted : Monday, October 8, 2007 1:31:52 AM(UTC)
royttm

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 3/27/2006(UTC)
Posts: 41
Location: Singapore

Dear wblam & uasish,

Thank you both with the formula for Metastock. Appreciated it.

I had tried both and some times I got a screen prompted me "Custom Indicators Math Errors" with division by zero: 53. Should I ignore it? BTW, I stick with a period of 8.

Once again, thanks.

Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.