StockFetcher Forums · Filter Exchange · no subject<< >>Post Follow-up
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

Fetcher[/* 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
]





TheRumpledOne
6,407 posts
msg #36029
Ignore TheRumpledOne
5/17/2005 7:04:33 PM

Fetcher[/* 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,9)}
set{cur1_10, count(cur1 > 0,9)}
set{cur2_10, count(cur2 > 0,9)}




set{r1x, cur1_10 * 10}
set{r2x, cur2_10 * 100}

set{R1PP, cupp_10 + r1x}
set{R2R1PP, R1PP + r2x}


add column R2R1PP

volume above 100000
and close above 1.00
and close below 20.00

sort column 5 descending

show stocks where R2R1PP > 0
]




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.


StockFetcher Forums · Filter Exchange · no subject<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.