PureBytes Links
Trading Reference Links
|
Michael,
Several points:
1. The ROC will give you that information as a percent. You would
still need to filter for those less than 50%.
2. Yahoo Groups has a search feature which allows you to search
through old messages. That's what I did and I came up with a
discussion in message 26524 on December 8, 2007 that was about a ROC
Since Date indicator. I believe it will work for you.
NAME: ROC Since a Date
FORMULA:
Day1 := Input("Day",1,31,4);
Month1 := Input("Month",1,12,1);
Year1 := Input("Year",1900,2400,1999);
100 * (CLOSE - ValueWhen(1,DayOfMonth() = Day1 AND Month() = Month1
AND Year() = Year1, CLOSE))/ ValueWhen(1,DayOfMonth() = Day1 AND
Month() = Month1 AND Year() = Year1,CLOSE)
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "mdtmn" <mdtmn@xxx> wrote:
>
> Hi All,
> This is a scan that I use to find stocks that have moved 50%
or
> more per quarter downwards ( close to close)
>
> Filter days:=60;
> C<=Ref(C,-days)-(Ref(C,-days)*0.5)
>
> as you can see it is approx ( and rough)and very dependent on what
day
> near the end of the quarter you run the scan
>
> Example , this last quarter was 1st July to 30th Sep ,was 66 days
> and running the scan on the 24th , 25th, 26th, 29th and 30th of
> September will give slightly different results
>
> Would someone be able to offer code that will scan for stocks in the
> quarter that at any time during that time period moved down in value
> by 50% or more, close to close ?
> Thanks in advance
> Michael B
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|