StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 11 12 13 14 15 ... 57 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #60101
Ignore TheRumpledOne
modified
3/1/2008 8:55:48 PM

Fetcher[

/* TRO STAT SCAN - DAYS UP COUNT */

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}

add column ClxCl

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

/* Long Profit Percent Statistics Display */

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

set{B0A, count(Long_Profit > .05 , 100)}
set{B1A, count(Long_Profit > .1 , 100)}
set{B2A, count(Long_Profit > .2 , 100)}
set{B3A, count(Long_Profit > .3 , 100)}
set{B4A, count(Long_Profit > .4, 100)}
set{B5A, count(Long_Profit > .5, 100)}
set{B10A, count(Long_Profit > 1.00 , 100)}
set{B20A, count(Long_Profit > 2.00 , 100)}
set{B50A, count(Long_Profit > 5.00, 100)}

SET{GREED, B1A - B5A}

add column HiOp
ADD COLUMN GREED
and add column B0A {OVER.05}
and add column B1A {OVER.10}
and add column B2A {OVER.20}
and add column B3A {OVER.30}
and add column B4A {OVER.40}
and add column B5A {OVER.50}
and add column B10A {OVER1.00}
and add column B20A {OVER2.00}
and add column B50A {OVER5.00}

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

ClxCl ABOVE 3
volume above 1000000

sort column 5 descending

]



TheRumpledOne
6,407 posts
msg #60102
Ignore TheRumpledOne
3/1/2008 8:57:23 PM

Fetcher[

/* TRO STAT SCAN - DAYS DOWN COUNT */

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}

add column ClxCl

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

/* Long Profit Percent Statistics Display */

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

set{B0A, count(Long_Profit > .05 , 100)}
set{B1A, count(Long_Profit > .1 , 100)}
set{B2A, count(Long_Profit > .2 , 100)}
set{B3A, count(Long_Profit > .3 , 100)}
set{B4A, count(Long_Profit > .4, 100)}
set{B5A, count(Long_Profit > .5, 100)}
set{B10A, count(Long_Profit > 1.00 , 100)}
set{B20A, count(Long_Profit > 2.00 , 100)}
set{B50A, count(Long_Profit > 5.00, 100)}

SET{GREED, B1A - B5A}

add column HiOp
ADD COLUMN GREED
and add column B0A {OVER.05}
and add column B1A {OVER.10}
and add column B2A {OVER.20}
and add column B3A {OVER.30}
and add column B4A {OVER.40}
and add column B5A {OVER.50}
and add column B10A {OVER1.00}
and add column B20A {OVER2.00}
and add column B50A {OVER5.00}

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

ClxCl BELOW -3
volume above 1000000

sort column 5 descending

]



TheRumpledOne
6,407 posts
msg #60103
Ignore TheRumpledOne
modified
3/1/2008 8:58:33 PM

Fetcher[

/* TRO STAT SCAN - RED DAYS COUNT */

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

add column ClxCl

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

/* Long Profit Percent Statistics Display */

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

set{B0A, count(Long_Profit > .05 , 100)}
set{B1A, count(Long_Profit > .1 , 100)}
set{B2A, count(Long_Profit > .2 , 100)}
set{B3A, count(Long_Profit > .3 , 100)}
set{B4A, count(Long_Profit > .4, 100)}
set{B5A, count(Long_Profit > .5, 100)}
set{B10A, count(Long_Profit > 1.00 , 100)}
set{B20A, count(Long_Profit > 2.00 , 100)}
set{B50A, count(Long_Profit > 5.00, 100)}

SET{GREED, B1A - B5A}

add column HiOp
ADD COLUMN GREED
and add column B0A {OVER.05}
and add column B1A {OVER.10}
and add column B2A {OVER.20}
and add column B3A {OVER.30}
and add column B4A {OVER.40}
and add column B5A {OVER.50}
and add column B10A {OVER1.00}
and add column B20A {OVER2.00}
and add column B50A {OVER5.00}

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

ClxCl BELOW -3
B1A ABOVE 1
volume above 1000000

sort column 5 ascending

]



TheRumpledOne
6,407 posts
msg #60104
Ignore TheRumpledOne
modified
3/1/2008 9:02:38 PM

Fetcher[

/* TRO STAT SCAN - GREEN DAYS COUNT */

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

add column ClxCl

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

/* Long Profit Percent Statistics Display */

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

set{B0A, count(Long_Profit > .05 , 100)}
set{B1A, count(Long_Profit > .1 , 100)}
set{B2A, count(Long_Profit > .2 , 100)}
set{B3A, count(Long_Profit > .3 , 100)}
set{B4A, count(Long_Profit > .4, 100)}
set{B5A, count(Long_Profit > .5, 100)}
set{B10A, count(Long_Profit > 1.00 , 100)}
set{B20A, count(Long_Profit > 2.00 , 100)}
set{B50A, count(Long_Profit > 5.00, 100)}

SET{GREED, B1A - B5A}

add column HiOp
ADD COLUMN GREED
and add column B0A {OVER.05}
and add column B1A {OVER.10}
and add column B2A {OVER.20}
and add column B3A {OVER.30}
and add column B4A {OVER.40}
and add column B5A {OVER.50}
and add column B10A {OVER1.00}
and add column B20A {OVER2.00}
and add column B50A {OVER5.00}

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

ClxCl ABOVE 3
B1A ABOVE 1
volume above 1000000

sort column 5 descending

]



mdl060374
94 posts
msg #60149
Ignore mdl060374
modified
3/3/2008 6:18:36 PM

Just so I know I am interpreting this correctly, I have a question.

In your "Red days" scan, .05 column, I take this to mean the amount of times the stock closed down by .05 or more in teh last 100 trading days.

GRMN is .99 (99%) but when I look at a daily chart, 99/100 of the last 100 days werent down.

Obviously I am reading/interpreting the data wrong, can you point me in the right direction?

Also, what does the greed column represent in this one?

TheRumpledOne
6,407 posts
msg #60156
Ignore TheRumpledOne
3/3/2008 8:55:41 PM

NO.

The columns are still showing the HIGH - OPEN statistics.

Of course, you can change them to show the OPEN - LOW stats if you like.

My idea was to find stocks that have been going down a while because the stats say they are likely to POP UP. When they POP it is usually huge!

It's all in the stats.



nikoschopen
2,824 posts
msg #60157
Ignore nikoschopen
3/3/2008 10:47:33 PM

In your "Red days" scan, .05 column, I take this to mean the amount of times the stock closed down by .05 or more in teh last 100 trading days.

mdl060374,
This merely means that "the stock closed down by .05 or more" 99 times out of the last 100 days. It does not mean that the stock fell consecutively for the past 99 days.

TheRumpledOne
6,407 posts
msg #60195
Ignore TheRumpledOne
modified
3/4/2008 8:00:12 PM

nikoschopen
- Ignore nikoschopen 3/3/2008 10:47:33 PM

In your "Red days" scan, .05 column, I take this to mean the amount of times the stock closed down by .05 or more in teh last 100 trading days.

mdl060374,
This merely means that "the stock closed down by .05 or more" 99 times out of the last 100 days. It does not mean that the stock fell consecutively for the past 99 days.
========================================================

NO!

The .05 column shows how many times the HIGH - OPEN was higher than .05.

Please do not confuse people.

From the filter:

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

set{B0A, count(Long_Profit > .05 , 100)}

TheRumpledOne
6,407 posts
msg #60201
Ignore TheRumpledOne
modified
3/5/2008 9:39:32 AM

Fetcher[
/* TRO STAT SCAN - POPS PER WEEK */

/* Long Profit Percent Statistics Display */

set{xRange, high - low}
set{AvgRng, cma(xRange,5) }
set{HiOp, high - open}
set{Long_Profit, HiOp/open }

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

set{A10A, count(Long_Profit > .10 , 1)}
set{chg, sum( A10A - A10A 1 day ago ,5)}

and add column B10A {GT10%}
and add column AvgRng

add column chg{(wk)}
add column chg 1 week ago{(-1wk)}
add column chg 2 weeks ago{(-2wk)}
add column chg 3 weeks ago{(-3wk)}
add column chg 4 weeks ago{(-4wk)}
add column chg 5 weeks ago{(-5wk)}
add column chg 6 weeks ago{(-6wk)}
add column chg 7 weeks ago{(-7wk)}
add column chg 8 weeks ago{(-8wk)}
and add column separator
add column industry
add column sector
and add column separator

/* SELECTION CRITERIA */

B10A above 10

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

sort column 5 descending
]





TheRumpledOne
6,407 posts
msg #60306
Ignore TheRumpledOne
3/7/2008 5:59:06 PM

Anyone watch or trade SPF this week?

What a little money maker that is!!

StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 11 12 13 14 15 ... 57 >>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.