StockFetcher Forums · Filter Exchange · 13th floor, 8% up/down filter,where is it?<< 1 2 >>Post Follow-up
woofys
212 posts
msg #70278
Ignore woofys
1/1/2009 12:39:10 AM

I have searched all documents and forums and cant find it. Also, the 8% lost 1 day/10% lost 2 day /failures stat scans I cant find that either. I would like to get prints on both if possible. Thank you.
Woofys




chetron
2,817 posts
msg #70279
Ignore chetron
1/1/2009 9:02:47 AM

I THINK IT'S HERE



welliott111
98 posts
msg #70282
Ignore welliott111
1/1/2009 10:44:13 AM

pg 1 & pg 3 of RFR thread already clickable

woofys
212 posts
msg #70387
Ignore woofys
1/4/2009 10:25:10 PM

Chetron, .....but, whats behind that GREEN door, Chetron? I guess only the shadow knows. I do thank you for your interest Chetron.

woofys
212 posts
msg #70388
Ignore woofys
1/4/2009 10:37:03 PM

Welliott 111 I went to the archives, forums and all documents. Got 5 picks, looked at 3, nothing so far.. Was that with any particular rfr (p. 1 and p. 3?) I believe there are other versions of that scan? Thank you Welliott 111.

chetron
2,817 posts
msg #70390
Ignore chetron
modified
1/5/2009 6:51:16 AM

woofys, thank you for your interest in my interest. i couldn't find a green door, or the exact filter, but what i did find was the13th/muddy short filter. i have tried to reverse it for green.


Fetcher[

/* TACHIKAWA */
/* RUN FOREST, RUN for 1 day 8 pct GAIN 2, 2 day 10 pct GAIN2 or more */
/* and WINS2 */

set{ DayChg1 , day change}
set{ DayChg2x , close - close 2 days ago }
set{ DayChg2y , DayChg2x / close 2 days ago }
set{ DayChg2 , DayChg2y * 100 }

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

set{ pick1 , count( DayChg1 ABOVE 7.9999 , 1 ) }
set{ pick2 , count( DayChg2 ABOVE 9.9999 , 1 ) }
set{ pickx , pick1 + pick2 }
set{ pickx1 , pickx 1 day ago }
set{ pick3 , count( ClxCl ABOVE 0 , 1 ) * pickx1 }
set{ pick , pickx + pick3 }

add column DayChg1 {Day1}
add column DayChg2 {Day2}

/* Long Profit Percent Statistics Display */

set{volcnt, count(volume above 1000000, 100) }
set{volzero, count(volume equal 0, 100) }

set{HiOp, high - open}
set{Long_Profit, HiOp/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .05, 100)}
set{B0010, B1A - B2A}

set{F1A, count(Long_Profit > .05 , 100)}
set{F2A, count(Long_Profit > .10, 100)}
set{F3040, F1A - F2A}

set{I100, count(Long_Profit > .10 , 100)}

and add column B0010 {1_5}
and add column F3040 {5_10}
and add column I100 {10___}

pick above 0

close is between .20 and 1
average volume(10) above 250000

sort column 10 descending
set{total,I100+average day range(10)}
and add column total
and add column average day range(10)

]



mdl060374
94 posts
msg #70402
Ignore mdl060374
1/5/2009 1:32:38 PM

I see the results are sorted by the "total" column. Can someone elaborate on what this refers to?

mdl060374
94 posts
msg #70403
Ignore mdl060374
1/5/2009 1:39:38 PM

nevermind. I found the ranking system in the blog :)

welliott111
98 posts
msg #70407
Ignore welliott111
1/5/2009 5:48:15 PM

woofys, these are from the original "Run Forest,Run" thread

Pg. 1
Fetcher[
/* Muddy Stocks - 8 percent */

show stocks where close gained more than 8 percent over the last one day and price is between .30 and 40

set{volcnt, count(volume above 1000000, 100) }
set{volzero, count(volume equal 0, 100) }

set{x1, high - open}
set{Long_Profit, x1/open }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 100)}
set{H2A, count(Long_Profit > .99, 100)}
set{H50100, H1A - H2A}

set{I100, count(Long_Profit > .99 , 100)}

set{E13b,days(close is above ema(13),100)}
set{E13a,days(close is below ema(13),100)}
set{CxE13, E13a - E13b}

/* enter your Upper Limit criteria */
set{UpperLim, High 8 week High}

/* enter your Lower Limit criteria */
set{LowerLim, Low 8 week Low}

set{ULCL, UpperLim - close}

set{Double, UpperLim * .50 }

set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOnx, PPDiv * 100}
set{BallOn, round(BallOnx,0)}

add column Long_Profit {ProfitPct}

and add column C0010 {4_9}
and add column D1020 {10_19}
and add column E2030 {20_29}
and add column F3040 {30_39}
and add column G4050 {40_49}
and add column H50100 {50_99}
and add column I100 {100}

and add column CxE13
add column BallOn

and add column volcnt
and add column volzero

sort column 11 descending
]




Fetcher[
/* Muddy Stocks - close lost more than 8 percent */

show stocks where close lost more than 8 percent over the last one day and price is between 1 and 40
and volume is greater than 400000

set{volcnt, count(volume above 1000000, 100) }
set{volzero, count(volume equal 0, 100) }

set{x1, high - open}
set{Long_Profit, x1/open }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 100)}
set{H2A, count(Long_Profit > .99, 100)}
set{H50100, H1A - H2A}

set{I100, count(Long_Profit > .99 , 100)}

set{E13b,days(close is above ema(13),100)}
set{E13a,days(close is below ema(13),100)}
set{CxE13, E13a - E13b}

/* enter your Upper Limit criteria */
set{UpperLim, High 8 week High}

/* enter your Lower Limit criteria */
set{LowerLim, Low 8 week Low}

set{ULCL, UpperLim - close}

set{Double, UpperLim * .50 }

set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOnx, PPDiv * 100}
set{BallOn, round(BallOnx,0)}

add column Long_Profit {ProfitPct}

and add column C0010 {4_9}
and add column D1020 {10_19}
and add column E2030 {20_29}
and add column F3040 {30_39}
and add column G4050 {40_49}
and add column H50100 {50_99}
and add column I100 {100}

and add column CxE13
add column BallOn

and add column volcnt
and add column volzero

sort column 11 descending
]



Pg. 3

Fetcher[
/* RUN FOREST, RUN for 1 day 8 pct loss, 2 day 10 pct loss or more */
/* and fails */

set{ DayChg1 , day change}
set{ DayChg2x , close - close 2 days ago }
set{ DayChg2y , DayChg2x / close 2 days ago }
set{ DayChg2 , DayChg2y * 100 }

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

set{ pick1 , count( DayChg1 below -7.9999 , 1 ) }
set{ pick2 , count( DayChg2 below -9.9999 , 1 ) }
set{ pickx , pick1 + pick2 }
set{ pickx1 , pickx 1 day ago }
set{ pick3 , count( ClxCl below 0 , 1 ) * pickx1 }
set{ pick , pickx + pick3 }

add column DayChg1
add column DayChg2
add column ClxCl

/* Long Profit Percent Statistics Display */

set{volcnt, count(volume above 1000000, 100) }
set{volzero, count(volume equal 0, 100) }

set{x1, high - open}
set{Long_Profit, x1/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .02, 100)}
set{B0010, B1A - B2A}

set{C1A, count(Long_Profit > .02 , 100)}
set{C2A, count(Long_Profit > .03, 100)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .03 , 100)}
set{D2A, count(Long_Profit > .04, 100)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .04 , 100)}
set{E2A, count(Long_Profit > .05, 100)}
set{E2030, E1A - E2A}

set{F1A, count(Long_Profit > .05 , 100)}
set{F2A, count(Long_Profit > .10, 100)}
set{F3040, F1A - F2A}

set{G1A, count(Long_Profit > .10 , 100)}
set{G2A, count(Long_Profit > .25, 100)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .25 , 100)}
set{H2A, count(Long_Profit > .50, 100)}
set{H50100, H1A - H2A}

set{I100, count(Long_Profit > .50 , 100)}

add column Long_Profit {ProfitPct}

and add column B0010 {1_2}
and add column C0010 {2_3}
and add column D1020 {3_4}
and add column E2030 {4_5}
and add column F3040 {5_10}
and add column G4050 {10_25}
and add column H50100 {25_50}
and add column I100 {50___}

and add column volcnt
and add column volzero

pick above 0

close is between 1 and 15
average volume(10) above 250000

sort column 14 descending
]



woofys
212 posts
msg #70505
Ignore woofys
1/8/2009 10:49:08 PM

WELLIOTT111 i must say, Welliott111, those 8% morsels, absollutely devilish!...Deadly, a much better word. Must put them to work fast before some congressional committee declares them a health hazzard. The last filter I have not tried
yet. And thank you again Welliott111.



StockFetcher Forums · Filter Exchange · 13th floor, 8% up/down filter,where is it?<< 1 2 >>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.