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

Notification

Icon
Error

Options
Go to last post Go to first unread
billsingh  
#1 Posted : Tuesday, March 20, 2007 3:26:10 PM(UTC)
billsingh

Rank: Member

Groups: Registered, Registered Users
Joined: 1/21/2007(UTC)
Posts: 21

Hi All,

I am trying to figure out the following for exploration.

  1. Today’s closing price is above both the 10-day and 20-day moving averages
  2. The 10-day moving average is above the 20-day moving average
  3. Today’s high price is lower than yesterday’s high
  4. Yesterday’s high is lower than the high the day before

Also trying to find out:

13-day moving average of the Force Index ,

Where force index is Force index = (Close [today] - Close [yesterday]) * Volume

Any help will be appreciated.

Thanks in advance.

Bill

hayseed  
#2 Posted : Tuesday, March 20, 2007 4:20:15 PM(UTC)
hayseed

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 3/7/2005(UTC)
Posts: 1,346

hey bill....... first part..... will look at part 2 in abit..... h

-----------------------

a:= mov(c,10,s);
aa:= mov(c,20,s);

(c > a) and (c > aa) and (a > aa) and (h < ref(h,-1)) and (ref(h,-1)< ref(h,-2));

----------------------

billsingh  
#3 Posted : Tuesday, March 20, 2007 4:23:27 PM(UTC)
billsingh

Rank: Member

Groups: Registered, Registered Users
Joined: 1/21/2007(UTC)
Posts: 21

Hayseed, thanks bro.
wabbit  
#4 Posted : Tuesday, March 20, 2007 5:37:59 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)
... and for Elder's Force Index, just use the search function on every page of the forum to look for "force index" and find pages like this:

http://forum.equis.com/forums/thread/6455.aspx
hayseed  
#5 Posted : Tuesday, March 20, 2007 5:50:13 PM(UTC)
hayseed

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 3/7/2005(UTC)
Posts: 1,346

hey bill..... force index would be something like code below.....h

-------------------------------------------

pds:=Input("periods",2,100,13);

a:= (C-Ref(C,-1)) * V;

Mov(a,pds,S);

--------------------------------------------

billsingh  
#6 Posted : Tuesday, March 20, 2007 7:54:16 PM(UTC)
billsingh

Rank: Member

Groups: Registered, Registered Users
Joined: 1/21/2007(UTC)
Posts: 21

Thanks Wabbit and Hayseed, you guys are awesome. We don't know what we do on this board without you two :).

Thanks

Bill

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.