StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 4 5 6 7 8 ... 57 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #57786
Ignore TheRumpledOne
modified
12/8/2007 6:08:26 PM

Fetcher[

/* TRO STAT SCAN - GREEDIER BASTARD COUNT - MUDDY */

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, B0A - B1A}

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 */

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

sort column 8 descending

]



This is the version for the GREEN ON THE SCREEN chatroom traders to use.

TheRumpledOne
6,407 posts
msg #57788
Ignore TheRumpledOne
modified
12/8/2007 6:53:28 PM

"13th_floor
The first RFR scan posted on this thread,the basic one I call it, with average volume(10) above 250,000 and PRICE CHANGED TO BETWEEN 15 AND 50 has been giving very impressive results since I've been tracking it daily the last few weeks.

Yestedays scan of the top 20 :
JRJC LULU ABK YGE CHNR ELON SSRX MTH EFUT CSIQ ASTI TBSI IOC PWRD WX SOLF MTG KBW GSOL MBI

18 ups/2 slight 1% downs

1 week results with a date offset of 5 for the top 20 matches show 16 ups/4 downs (3 very slight) with 9 of those 16 ups in double digits including big gains YGE 20% PWRD 30% SOLF 58% CSIQ 37%"

=====================================================

13th_Floor:

You're just going to confuse people if you show them that this works for someone other than me.

Posting FACTS is just a DISTRACTION and could be considered ARBITRARY.

You should be spending all of your time and energy showing other people WHY THIS CAN'T WORK!

What are you trying to do, 13th, help someone make money? What's wrong with you?!?!?





dbyrt
70 posts
msg #57789
Ignore dbyrt
12/8/2007 7:08:49 PM

"1 week results with a date offset of 5 for the top 20 matches show 16 ups/4 downs (3 very slight) with 9 of those 16 ups in double digits including big gains YGE 20% PWRD 30% SOLF 58% CSIQ 37%"

Perhaps it should be pointed out, that looking at the 5 day, date-offset return on this scan, is not what it is trying to identify.
Its not looking for stocks that are climbing, day-over-day for 5 days or so. It measures how much intraday change there is, not interday. Any movement up over five days is a welcome benefit if you hold a stock, but actually not helpful for the day trader.........because you can`t compound your gains, you can still only buy the same number of shares the next day, and the next day etc if the price continues to rise. However, if a stock returns to its open (or near enough), you can compound the 1% or better return you made the next day, and buy more. Theoretically of course.
So, a flat stock over time, that has a movement 1% up or better each day would actually be better.

13th_floor
724 posts
msg #57797
Ignore 13th_floor
12/8/2007 10:35:02 PM

This is what I posted earlier on the LDK thread in general discussion:


"If a stock like SOLF gains 60% over the last 5 days,I'm very satisfied to take a total of say 30% trading it over the last 5 days on the days it does go green with increased volume and or volume spikes..
I simply in most cases do not like to hold overnight."

My point of posting the 5 days gains is that in my case I can get alot more/larger gains out of ones that have higher 5 day gains than ones that are flattish in almost all cases

TheRumpledOne
6,407 posts
msg #57799
Ignore TheRumpledOne
modified
12/8/2007 11:01:52 PM

Fetcher[
/* TRO STAT SCAN 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

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/open }
set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .02 , 100)}
set{B3A, count(Long_Profit > .03 , 100)}
set{B4A, count(Long_Profit > .04, 100)}
set{B5A, count(Long_Profit > .05, 100)}
set{B10A, count(Long_Profit > .10 , 100)}
set{B20A, count(Long_Profit > .20 , 100)}
set{B50A, count(Long_Profit > .50, 100)}

add column HiOp
add column Long_Profit {ProfitPct}

and add column B1A {OVER1PCT}
and add column B2A {OVER2PCT}
and add column B3A {OVER3PCT}
and add column B4A {OVER4PCT}
and add column B5A {OVER5PCT}
and add column B10A {OVER10PCT}
and add column B20A {OVER20PCT}
and add column B50A {OVER50PCT}

and add column volcnt
and add column volzero

pick above 0

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

sort column 12 descending
]





TheRumpledOne
6,407 posts
msg #57821
Ignore TheRumpledOne
modified
12/9/2007 10:32:16 AM

Fetcher[
/* TRO STAT SCAN - GREEN ON THE SCREEN */

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{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/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .02 , 100)}
set{B3A, count(Long_Profit > .03 , 100)}
set{B4A, count(Long_Profit > .04, 100)}
set{B5A, count(Long_Profit > .05, 100)}
set{B10A, count(Long_Profit > .10 , 100)}
set{B20A, count(Long_Profit > .20 , 100)}
set{B50A, count(Long_Profit > .50, 100)}

set{D10A, Days(Long_Profit > .10 , 100)}

add column ClxCl
add column HiOp
add column Long_Profit {ProfitPct}

and add column B10A {OVER10PCT}
and add column D10A {Days }

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

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

sort column 8 descending
]



Since the GREEN ON THE SCREEN focus on the over 10% column, I removed the other colums.

I added the Days column to show how many days have elapsed since the last time the stock ran over 10%. This may indicate when a stock is due to run.

Fetcher[
/* TRO STAT SCAN - GREEN ON THE SCREEN */
/* 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

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/open }
set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .02 , 100)}
set{B3A, count(Long_Profit > .03 , 100)}
set{B4A, count(Long_Profit > .04, 100)}
set{B5A, count(Long_Profit > .05, 100)}
set{B10A, count(Long_Profit > .10 , 100)}
set{B20A, count(Long_Profit > .20 , 100)}
set{B50A, count(Long_Profit > .50, 100)}

set{D10A, Days(Long_Profit > .10 , 100)}

add column HiOp
add column Long_Profit {ProfitPct}

and add column B10A {OVER10PCT}
and add column D10A {Days }

and add column volcnt
and add column volzero

pick above 0

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

sort column 10 descending
]



TheRumpledOne
6,407 posts
msg #57877
Ignore TheRumpledOne
12/10/2007 10:42:12 AM

Image and video hosting by TinyPic

See what you can do with STATISTICS!

TheRumpledOne
6,407 posts
msg #57884
Ignore TheRumpledOne
12/10/2007 1:11:06 PM

Image and video hosting by TinyPic

It's not what you trade...

TheRumpledOne
6,407 posts
msg #57888
Ignore TheRumpledOne
12/10/2007 1:53:15 PM

Fetcher[
/* TRO STAT SCAN - GREEN ON THE SCREEN */

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{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/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .02 , 100)}
set{B3A, count(Long_Profit > .03 , 100)}
set{B4A, count(Long_Profit > .04, 100)}
set{B5A, count(Long_Profit > .05, 100)}
set{B10A, count(Long_Profit > .10 , 100)}
set{B20A, count(Long_Profit > .20 , 100)}
set{B50A, count(Long_Profit > .50, 100)}

set{D10A, Days(Long_Profit > .10 , 100)}

add column ClxCl
add column HiOp
add column Long_Profit {ProfitPct}

and add column B10A {OVER10PCT}
and add column D10A {Days }

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

symlist(crdc,sca,nfi,wci,pmi,rdn,spf)

sort column 8 descending

date offset is 12/7/2007
]



Look at the columns and see how the stats gave you the chance to ride these winners.


TheRumpledOne
6,407 posts
msg #57895
Ignore TheRumpledOne
12/10/2007 4:01:23 PM

Image and video hosting by TinyPic



StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 4 5 6 7 8 ... 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.