StockFetcher Forums · Filter Exchange · Strong Trending Stocks<< >>Post Follow-up
decipherlinda
133 posts
msg #62030
Ignore decipherlinda
5/1/2008 8:54:56 PM

Standing on shoulder of Giants -- Thanks TRO!
Borrowed TRO's basic strategy (and wording) and adapted it to filter selecting trending stocks with consistent performance. Shows stocks up 1%+ last 5 days, last 10 days...plus % change in price during those same time periods.

How do I put it in clickable format for this forum?

If I've stepped on toes or put this in the wrong thread, etc., speak softly (thanks in advance for guidance), no big stick needed. Newby but not a virgin.

Got better ideas? Your input appreciated.

Thanks!

/*Number of Days Up in Last 5, 10, 15, 20, 25, 30, 35, 40, 45 and 50 Days*/

Average Volume more than 100000 shares

set{P-1, close - close 1 day ago}
set{Avg-14, CMA(P-1, 14)}

set{P-up5, count(P-1 > .99%, 5)}
set{P-up10, count(P-1 > .99%, 10)}
set{P-up15, count(P-1 > .99%, 15)}
set{P-up20, count(P-1 > .99%, 20)}
set{P-up25, count(P-1 > .99%, 25)}
set{P-up30, count(P-1 > .99%, 30)}
set{P-up35, count(P-1 > .99%, 35)}
set{P-up40, count(P-1 > .99%, 40)}
set{P-up45, count(P-1 > .99%, 45)}
set{P-up50, count(P-1 > .99%, 50)}

/*Selection Filter*/

show stocks where P-up5 > 3

/*Price Percent Change by Period*/

set{CC5, close - close 5 days ago}
set{Pft5, CC5 / close 5 days ago}
set{Pct5, Pft5 * 100}

set{CC10, close - close 10 days ago}
set{Pft10, CC10 / close 10 days ago}
set{Pct10, Pft10 * 100}

set{CC15, close - close 15 days ago}
set{Pft15, CC15 / close 15 days ago}
set{Pct15, Pft15 * 100}

set{CC20, close - close 20 days ago}
set{Pft20, CC20 / close 20 days ago}
set{Pct20, Pft20 * 100}

set{CC25, close - close 25 days ago}
set{Pft25, CC25 / close 25 days ago}
set{Pct25, Pft25 * 100}

set{CC30, close - close 30 days ago}
set{Pft30, CC30 / close 30 days ago}
set{Pct30, Pft30 * 100}

set{CC35, close - close 35 days ago}
set{Pft35, CC35 / close 35 days ago}
set{Pct35, Pft35 * 100}

set{CC40, close - close 40 days ago}
set{Pft40, CC40 / close 40 days ago}
set{Pct40, Pft40 * 100}

set{CC45, close - close 45 days ago}
set{Pft45, CC45 / close 45 days ago}
set{Pct45, Pft45 * 100}

set{CC50, close - close 50 days ago}
set{Pft50, CC50 / close 50 days ago}
set{Pct50, Pft50 * 100}


/* DISPLAY COLUMNS */

add column P-up5 {Day5 GT .99}
add column Pct5
add column P-up10 {D10}
add column Pct10
add column P-up15 {D15}
add column Pct15
add column P-up20 {D20}
add column Pct20
add column P-up25 {D25}
add column Pct25
add column P-up30 {D30}
add column Pct30
add column P-up35 {D35}
add column Pct35
add column P-up40 {D40}
add column Pct40
add column P-up45 {D45}
add column Pct45
add column P-up50 {D50}
add column Pct50


maxreturn
745 posts
msg #62036
Ignore maxreturn
modified
5/1/2008 9:55:42 PM

Hello Decipher. You can make any filter clickable by placing the word "Fetcher" followed immediately by "[" before your first line of code and then "]" immediately after your last line of code:

Fetcher[
/*Number of Days Up in Last 5, 10, 15, 20, 25, 30, 35, 40, 45 and 50 Days*/

Average Volume more than 100000 shares

set{P-1, close - close 1 day ago}
set{Avg-14, CMA(P-1, 14)}

set{P-up5, count(P-1 > .99%, 5)}
set{P-up10, count(P-1 > .99%, 10)}
set{P-up15, count(P-1 > .99%, 15)}
set{P-up20, count(P-1 > .99%, 20)}
set{P-up25, count(P-1 > .99%, 25)}
set{P-up30, count(P-1 > .99%, 30)}
set{P-up35, count(P-1 > .99%, 35)}
set{P-up40, count(P-1 > .99%, 40)}
set{P-up45, count(P-1 > .99%, 45)}
set{P-up50, count(P-1 > .99%, 50)}

/*Selection Filter*/

show stocks where P-up5 > 3

/*Price Percent Change by Period*/

set{CC5, close - close 5 days ago}
set{Pft5, CC5 / close 5 days ago}
set{Pct5, Pft5 * 100}

set{CC10, close - close 10 days ago}
set{Pft10, CC10 / close 10 days ago}
set{Pct10, Pft10 * 100}

set{CC15, close - close 15 days ago}
set{Pft15, CC15 / close 15 days ago}
set{Pct15, Pft15 * 100}

set{CC20, close - close 20 days ago}
set{Pft20, CC20 / close 20 days ago}
set{Pct20, Pft20 * 100}

set{CC25, close - close 25 days ago}
set{Pft25, CC25 / close 25 days ago}
set{Pct25, Pft25 * 100}

set{CC30, close - close 30 days ago}
set{Pft30, CC30 / close 30 days ago}
set{Pct30, Pft30 * 100}

set{CC35, close - close 35 days ago}
set{Pft35, CC35 / close 35 days ago}
set{Pct35, Pft35 * 100}

set{CC40, close - close 40 days ago}
set{Pft40, CC40 / close 40 days ago}
set{Pct40, Pft40 * 100}

set{CC45, close - close 45 days ago}
set{Pft45, CC45 / close 45 days ago}
set{Pct45, Pft45 * 100}

set{CC50, close - close 50 days ago}
set{Pft50, CC50 / close 50 days ago}
set{Pct50, Pft50 * 100}


/* DISPLAY COLUMNS */

add column P-up5 {Day5 GT .99}
add column Pct5
add column P-up10 {D10}
add column Pct10
add column P-up15 {D15}
add column Pct15
add column P-up20 {D20}
add column Pct20
add column P-up25 {D25}
add column Pct25
add column P-up30 {D30}
add column Pct30
add column P-up35 {D35}
add column Pct35
add column P-up40 {D40}
add column Pct40
add column P-up45 {D45}
add column Pct45
add column P-up50 {D50}
add column Pct50
]



decipherlinda
133 posts
msg #62045
Ignore decipherlinda
5/2/2008 3:56:25 AM

Thanks for the info! Looks like I still didn't get the job done. Tomorrow hopefully. It's a 4AM thing.

This is another version of the prior filter for traders looking for short term trades. Seemed misleading before since by week 2 it wasn't clear what gain was from week 2 versus week 1, etc. This selects stocks up 1% each day for the past 5 days, then number of times per week gained 1%+ for last 10 weeks and the percent gain by week.

TRO, hope you don't mind my building off of your innovation.

Fetcher[Close is > 4.99
Average volume more than 100000 shares

set{P5A, close / close 1 day ago}
set{P5B, count(P5A > 1.01, 5)}

show stocks where P5B > 4

set{P10A, close 5 days ago / close 6 days ago}
set{P10B, count(P10A > 1.01, 5)}

set{P15A, close 11 days ago - close 12 days ago}
set{P15B, count(P15A > .1.01, 5)}

set{P20A, close 16 days ago - close 17 days ago}
set{P20B, count(P20A > 1.01, 5)}

set{P25A, close 21 days ago - close 22 days ago}
set{P25B, count(P25A > 1.01, 5)}

set{P30A, close 26 days ago - close 27 days ago}
set{P30B, count(P30A > 1.01, 5)}

set{P35A, close 31 days ago - close 32 days ago}
set{P35B, count(P35A > 1.01, 5)}

set{P40A, close 36 days ago - close 37 days ago}
set{P40B, count(P40A > 1.01, 5)}

set{P45A, close 41 days ago - close 42 days ago}
set{P45B, count(P45A > 1.01, 5)}

set{P50A, close 46 days ago - close 47 days ago}
set{P50B, count(P50A > 1.01, 5)}

/*Price Percent Change by Period*/

set{P5C, close - close 5 days ago}
set{P5D, P5C / close 5 days ago}
set{Pct5, P5D * 100}

set{P10C, close 6 days ago - close 10 days ago}
set{P10D, P10C / close 10 days ago}
set{Pct10, P10D * 100}

set{P15C, close 11 days ago - close 15 days ago}
set{P15D, P15C / close 15 days ago}
set{Pct15, P15D * 100}

set{P20C, close 16 days ago - close 20 days ago}
set{P20D, P20C / close 20 days ago}
set{Pct20, P20D * 100}

set{P25C, close 21 days ago - close 25 days ago}
set{P25D, P25C / close 25 days ago}
set{Pct25, P25D * 100}

set{P30C, close 26 days ago - close 30 days ago}
set{P30D, P30C / close 30 days ago}
set{Pct30, P30D * 100}

set{P35C, close 31 days ago - close 35 days ago}
set{P35D, P35C / close 35 days ago}
set{Pct35, P35D * 100}

set{P40C, close 36 days ago - close 40 days ago}
set{P40D, P40C / close 40 days ago}
set{Pct40, P40D * 100}

set{P45C, close 41 days ago - close 45 days ago}
set{P45D, P45C / close 45 days ago}
set{Pct45, P45D * 100}

set{P50C, close 46 days ago - close 50 days ago}
set{P50D, P50C / close 50 days ago}
set{Pct50, P50D * 100}

add column P5B {5Days 1%+/Day}
add column Pct5
add column P10B {D10}
add column Pct10
add column P15B {D15}
add column Pct15
add column P20B {D20}
add column Pct20
add column P25B {D25}
add column Pct25
add column P30B {D30}
add column Pct30
add column P35B {D35}
add column Pct35
add column P40B {D40}
add column Pct40
add column P45B {D45}
add column Pct45
add column P50B {D50}
add column Pct50
]




bkhurana43
103 posts
msg #62048
Ignore bkhurana43
5/2/2008 8:31:20 AM

Hi Decipher,

Great piece of work. How about one for traders who believe in "Short" plays?
Bob

decipherlinda
133 posts
msg #62071
Ignore decipherlinda
5/2/2008 12:39:13 PM

Hi Bob,

I'm in it usually for up to 3 weeks at a time. For shorter plays, have you checked out the thread:

/* TRO - DAILY/WEEKLY UPTREND FILTER DISPLAY */ by TheRumpledOne (aka TRO)?

I borrowed heavily from him in constructing this filter. His was for short term and day traders (I think). I took his conceptual basis and applied it to trading for a longer term period.

Good luck. Linda

anollmann
2 posts
msg #62200
Ignore anollmann
5/6/2008 5:01:01 AM

Linda,

Do you play these hoping they continue to climb or are your looking for the down swing?

Thanks

Alex

lytle
3 posts
msg #62494
Ignore lytle
5/11/2008 9:22:45 PM

A short note to you guys: This is a great filter! It had to take forever to work it out. Great job!

Don

StockFetcher Forums · Filter Exchange · Strong Trending Stocks<< >>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.