roncarn 21 posts msg #36025 - Ignore roncarn |
5/17/2005 3:38:14 PM
After taking so many excellent filters written by others...I'd like to give one back. Spots stocks in uptrend by counting the days the close is above the PP, R1, and R2 resistances from the close the day before. Right now the window is set at 10 days. You can adjust that and pps and volume to meet your needs. Just a different way to find a stock in a strong uptrend. - ron_xlii
Title: Count Closes above PP R1 R2 Filter
Fletcher [/* In the last 10 days how many days has the stock closed
above the PP, R1 and R2 */
set{cupp, close > pp from 1 day ago}
set{cur1, close > r1 from 1 day ago}
set{cur2, close > r2 from 1 day ago}
/* change 10 to any number of days you want */
set{cupp_10, count(cupp > 0,10)}
set{cur1_10, count(cur1 > 0,10)}
set{cur2_10, count(cur2 > 0,10)}
add column cupp_10{pp_10}
add column cur1_10{r1_10}
add column cur2_10{r2_10}
volume above 100000
and close above 1.00
and close below 20.00
/* delete or modify the line below to change results */
show stocks where cupp > 5]
|
roncarn 21 posts msg #36027 - Ignore roncarn |
5/17/2005 3:50:06 PM
I Messed fetcher up, plus didn't give the note a title...real good thinking. Repost of filter with fetcher command:
Title: Count Closes above PP R1 R2 Filter
|
TheRumpledOne 6,411 posts msg #36029 - Ignore TheRumpledOne |
5/17/2005 7:04:33 PM
No need to delete, just sort descending on the R2R1PP column and you'll have a broader view. Stronger stocks pop to the top!
MAY ALL YOUR FILLS BE COMPLETE.
|
roncarn 21 posts msg #36034 - Ignore roncarn |
5/18/2005 7:36:20 AM
Thanks, TheRumpledOne. The weighed sort is a great improvement. Much easier to pick the candidates. Don't worry, I'll wait for green. I got one more filter to write along this same theme. I'll try to get to it tonight.
|