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

Notification

Icon
Error

Options
Go to last post Go to first unread
tsutomu  
#1 Posted : Wednesday, June 4, 2008 9:20:37 AM(UTC)
tsutomu

Rank: Newbie

Groups: Registered, Registered Users
Joined: 5/29/2008(UTC)
Posts: 4

Hello,

Is there a way to search for all the falling stocks? I want to be able to screen the stocks that I have downloaded the historical prices and just look at stocks that have been falling for say 2 weeks.

Now I am eyeballing every stock and it seems quite tiring[sn]. Is there a way to extract only the falling stocks from all the stocks? And then I will only eyeball this lot.

Thanks.

tsutomu

Bulli  
#2 Posted : Wednesday, June 4, 2008 3:22:18 PM(UTC)
Bulli

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 9/26/2005(UTC)
Posts: 185
Location: Brazil

Sure, but will depend on how you define falling in the last two weeks.

For an easy one, just compare the close for today with the close X days ago, with a certain X percentage for example.

C<Ref(C*.96,-10)

You can change .96 (=fall 4%) to anything you would like.

Change -10 (10 periods) to anything you would like.

[]s

Bulli

tsutomu  
#3 Posted : Wednesday, June 4, 2008 11:41:26 PM(UTC)
tsutomu

Rank: Newbie

Groups: Registered, Registered Users
Joined: 5/29/2008(UTC)
Posts: 4

Bulli wrote:

Sure, but will depend on how you define falling in the last two weeks.

For an easy one, just compare the close for today with the close X days ago, with a certain X percentage for example.

C<Ref(C*.96,-10)

You can change .96 (=fall 4%) to anything you would like.

Change -10 (10 periods) to anything you would like.

[]s

Bulli

Thank you for your reply. I'm very new to Metastock.

Is it possible that in addition to the closing price being lower, can I also check that say 8 out of 10 past days were falling days? Graphically, this will be a consistent falling trend.

tsutomu

Justin  
#4 Posted : Thursday, June 5, 2008 7:34:42 AM(UTC)
Justin

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 9/13/2004(UTC)
Posts: 673
Location: Salt Lake City, UT

You can sum a condition for x number of days, i.e.:

Sum(C<Ref(C*.96,-1),10) >= 8

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.