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

Notification

Icon
Error

Options
Go to last post Go to first unread
renu  
#1 Posted : Friday, June 6, 2008 3:05:15 AM(UTC)
renu

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 1/20/2007(UTC)
Posts: 5

there is afomula based on market effecincy 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;

0;

how can i use this formula as an explorer for 60 min,,, and even in eod chart

filter if line crosses,or teh value of line -0.5 or less than -0.5 gives buy signal...and if more than 0.5 or greater than 0.5 gives sell signal

looking forward by seniors for quick reply

till now i have been opening every chart and looking to teh value of teh indiactor it would be of great help if i can get filter of this indicator,,,

renu

wabbit  
#2 Posted : Friday, June 6, 2008 9:10:23 AM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)

Hi renu,

If you are NOT talking about trying to mix timeframes, just copy the (slightly modified) formula into the explorer and choose the requisite timeframe in the options, something like:

Code:
{col A - MER}
pds:=8;
Speed:= C - Ref(C, -pds);
Volatility:= Sum(Abs(C - Ref(C, -1)),pds);
Efficiency:= Speed / Volatility;
Mov(Mov(Efficiency, 5,E),3,E);
{col B - BUY}
pds:=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<-0.5;
{col C - SELL}
pds:=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>0.5;
{filter}
ColB OR ColC
An alternative way that might make things a little more customisable would be to explore the use of Fml() and FmlVar() functions and avoid repeating the same functions. There is a speed/performance cost which should be speed tested.

There is a lot of good information in the MS Users Manual and the free Equis Formula Primer regarding these functions, and creating explorations in and for different timeframes.


Hope this helps.

wabbit [:D]

renu  
#3 Posted : Saturday, June 7, 2008 12:09:13 PM(UTC)
renu

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 1/20/2007(UTC)
Posts: 5

thanks wabbit,,, i am getting excatly whta i wnat in both intra / eod,,seperately..

if u have such more indiactors relating to teh speed/ volatility,,,kindly bring in to my notice clearly so that i can give them a try...

renu

renu  
#4 Posted : Wednesday, June 11, 2008 9:05:21 AM(UTC)
renu

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 1/20/2007(UTC)
Posts: 5

one more query...in filter i am getting exact result as desired,,now how can i do that which can give me automatocally alert during intraday,,,,without running filter every specific time

renu

wabbit  
#5 Posted : Wednesday, June 11, 2008 5:38:51 PM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)
Research MetaStock's expert advisor in your Users Manual, specifically the creation of alerts.


wabbit [:D]

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.