StockFetcher Forums · Filter Exchange · TRO CROCK POT - SLOW COOKERS FOR SWING TRADERS<< 1 ... 7 8 9 10 11 ... 26 >>Post Follow-up
ultra5150
15 posts
msg #71126
Ignore ultra5150
2/2/2009 12:52:05 AM

Hi TRO, I don't mean any disrespect by asking that question....

On page 8 of the thread, there was some questions about the count function, and whether the filter is counting the number of weeks correctly, and that the count was counting "days, and not weeks", I am just wondering if the issue has been addressed and/or the filter on page 1 has been updated with the proper usage of the count function.

Thank you for your help.

TheRumpledOne
6,529 posts
msg #71130
Ignore TheRumpledOne
2/2/2009 9:48:35 AM

I wasn't implying that you were being disrespectful.

I just didn't understand the question.

I use the filter on page 1.



ultra5150
15 posts
msg #71135
Ignore ultra5150
2/2/2009 3:55:18 PM

Got it TRO !!! You're the Best !!!

kmcninvest
43 posts
msg #77631
Ignore kmcninvest
8/17/2009 9:19:42 PM

First off, kudos to TRO. This is a great filer...leveraging statistics. I modified it some thinking that 52 weeks was too long for current strong stocks (thinking stocks must have a cycle of maybe 3 months). I was shooting for the 5% range. I targeted 13 weeks but added look behind of the last 12 weeks (week by week) and 26 and 52 weeks. The last 12 weeks tells me if a stock is starting to lag and new stocks are showing and the 26/52 lets me make a decison on ties. I would appreciate any thoughts on this as I am a newbie.


/* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday */

set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }

set{C1A, count(Long_Profit > .04 , 13)}
set{C2A, count(Long_Profit > .09, 13)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .09 , 13)}
set{D2A, count(Long_Profit > .19, 13)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .19 , 13)}
set{E2A, count(Long_Profit > .29, 13)}
set{E2030, E1A - E2A}

set{F1A, count(Long_Profit > .29 , 13)}
set{F2A, count(Long_Profit > .39, 13)}
set{F3040, F1A - F2A}

set{G1A, count(Long_Profit > .39 , 13)}
set{G2A, count(Long_Profit > .49, 13)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .49 , 13)}
set{H2A, count(Long_Profit > .99, 13)}
set{H5052, H1A - H2A}

set{I52, count(Long_Profit > .99 , 13)}
set{fivepct1, count(Long_Profit > .05 , 1)}
set{fivepct2, count(Long_Profit > .05 , 2)}
set{fivepct3, count(Long_Profit > .05 , 3)}
set{fivepct4, count(Long_Profit > .05 , 4)}
set{fivepct5, count(Long_Profit > .05 , 5)}
set{fivepct6, count(Long_Profit > .05 , 6)}
set{fivepct7, count(Long_Profit > .05 , 7)}
set{fivepct8, count(Long_Profit > .05 , 8)}
set{fivepct9, count(Long_Profit > .05 , 9)}
set{fivepct10, count(Long_Profit > .05 , 10)}
set{fivepct11, count(Long_Profit > .05 , 11)}
set{fivepct12, count(Long_Profit > .05 , 12)}
set{fivepct, count(Long_Profit > .05 , 13)}
set{fivepct26, count(Long_Profit > .05 , 26)}
set{fivepct52, count(Long_Profit > .05 , 52)}
set{sixpct, count(Long_Profit > .06 , 13)}
set{sevenpct, count(Long_Profit > .07 , 13)}
set{eightpct, count(Long_Profit > .08 , 13)}
set{ninepct, count(Long_Profit > .09 , 13)}
set{tenpct, count(Long_Profit > .1 , 13)}
set{ziphi, count(whiop equal 0 , 13)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 13)}
set{twopct, count(Long_Profit > .02 , 13)}
set{halfpct, count(Long_Profit > .005 , 13)}
set{qtrpct, count(Long_Profit > .0025 , 13)}

add column wkProfitPct
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct1
add column fivepct2
add column fivepct3
add column fivepct4
add column fivepct5
add column fivepct6
add column fivepct7
add column fivepct8
add column fivepct9
add column fivepct10
add column fivepct11
add column fivepct12
add column fivepct
add column fivepct26
add column fivepct52
add column sixpct
add column sevenpct
add column eightpct
add column ninepct
add column tenpct

add column ziphi


and add column separator
and add column I52 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

close is above 1
average volume(90) above 500000

draw whiop
draw ziphix
sort column 22 descending

chart-display is weekly

date offset is 0




kmcninvest
43 posts
msg #77632
Ignore kmcninvest
8/17/2009 9:37:25 PM

Trying to make clickable

Fetcher[ /* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday */

set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }

set{C1A, count(Long_Profit > .04 , 13)}
set{C2A, count(Long_Profit > .09, 13)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .09 , 13)}
set{D2A, count(Long_Profit > .19, 13)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .19 , 13)}
set{E2A, count(Long_Profit > .29, 13)}
set{E2030, E1A - E2A}

set{F1A, count(Long_Profit > .29 , 13)}
set{F2A, count(Long_Profit > .39, 13)}
set{F3040, F1A - F2A}

set{G1A, count(Long_Profit > .39 , 13)}
set{G2A, count(Long_Profit > .49, 13)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .49 , 13)}
set{H2A, count(Long_Profit > .99, 13)}
set{H5052, H1A - H2A}

set{I52, count(Long_Profit > .99 , 13)}
set{fivepct1, count(Long_Profit > .05 , 1)}
set{fivepct2, count(Long_Profit > .05 , 2)}
set{fivepct3, count(Long_Profit > .05 , 3)}
set{fivepct4, count(Long_Profit > .05 , 4)}
set{fivepct5, count(Long_Profit > .05 , 5)}
set{fivepct6, count(Long_Profit > .05 , 6)}
set{fivepct7, count(Long_Profit > .05 , 7)}
set{fivepct8, count(Long_Profit > .05 , 8)}
set{fivepct9, count(Long_Profit > .05 , 9)}
set{fivepct10, count(Long_Profit > .05 , 10)}
set{fivepct11, count(Long_Profit > .05 , 11)}
set{fivepct12, count(Long_Profit > .05 , 12)}
set{fivepct, count(Long_Profit > .05 , 13)}
set{fivepct26, count(Long_Profit > .05 , 26)}
set{fivepct52, count(Long_Profit > .05 , 52)}
set{sixpct, count(Long_Profit > .06 , 13)}
set{sevenpct, count(Long_Profit > .07 , 13)}
set{eightpct, count(Long_Profit > .08 , 13)}
set{ninepct, count(Long_Profit > .09 , 13)}
set{tenpct, count(Long_Profit > .1 , 13)}
set{ziphi, count(whiop equal 0 , 13)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 13)}
set{twopct, count(Long_Profit > .02 , 13)}
set{halfpct, count(Long_Profit > .005 , 13)}
set{qtrpct, count(Long_Profit > .0025 , 13)}

add column wkProfitPct
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct1
add column fivepct2
add column fivepct3
add column fivepct4
add column fivepct5
add column fivepct6
add column fivepct7
add column fivepct8
add column fivepct9
add column fivepct10
add column fivepct11
add column fivepct12
add column fivepct
add column fivepct26
add column fivepct52
add column sixpct
add column sevenpct
add column eightpct
add column ninepct
add column tenpct

add column ziphi


and add column separator
and add column I52 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

close is above 1
average volume(90) above 500000

draw whiop
draw ziphix
sort column 22 descending

chart-display is weekly

date offset is 0
]



levamit
101 posts
msg #77640
Ignore levamit
8/18/2009 9:11:24 AM

Ok,

Last day 17.8.09 when market was closed the filter find 1873 results, please tell me how I select the best stocks from the list.
And what are the criteria to select them?

Thanks.


yenaledd
15 posts
msg #77649
Ignore yenaledd
8/18/2009 11:15:57 AM

How would I filter further if I wanted to restrict stocks to trading between $10 and $25 and sort by the twopct column?

kmcninvest
43 posts
msg #77674
Ignore kmcninvest
8/18/2009 9:22:13 PM

Ok,

Last day 17.8.09 when market was closed the filter find 1873 results, please tell me how I select the best stocks from the list.
And what are the criteria to select them?

Thanks.
_________________________________________________

You want to run the filter after close Friday and before open on Monday. This week FUQI was number 1 with 13 weeks over 5% and there were multiple listed with 12 weeks over 5%. I chose BZH because it had the higher 26 week and 52 week over 5%. Both hit 5% already this week.

kmcninvest
43 posts
msg #77675
Ignore kmcninvest
8/18/2009 9:23:19 PM

How would I filter further if I wanted to restrict stocks to trading between $10 and $25 and sort by the twopct column?
__________________________________________________________
Just put the stock price restriction in the criterial and change the sort to the 2% column.

Kevin_in_GA
4,599 posts
msg #78118
Ignore Kevin_in_GA
8/27/2009 6:40:37 PM

This is a VERY interesting idea. Thanks, TRO.

This fits my needs nicely - I still work a day job, so no way I can trade like many here do. And frankly, the idea of "put in your orders and walk away confident you'll net 1-2%" is alluring.

Will try this out with a portion of my trading capital next week. I am a little worried that we are seeing great results recently because of the market pump up that will soon go "boom", but looking at several of these top stocks, they have consistently performed during what was arguably the worst year in thre decades for the market.

Agina, Thanks to TRO for all he has contributed here. Keep the good stuff coming - it is always appreciated.



StockFetcher Forums · Filter Exchange · TRO CROCK POT - SLOW COOKERS FOR SWING TRADERS<< 1 ... 7 8 9 10 11 ... 26 >>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.