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

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

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)}

set{A1A, count(Long_Profit > .10 , 1)}
set{A2A, count(Long_Profit 1 day ago > .10 , 1)}
set{A3A, count(Long_Profit 2 days ago > .10 , 1)}

set{ LP2, A2A plus A1A }
set{ LP3, A3A plus LP2 }

set{ run2 , count( LP2 equal 2, 100) }
set{ run3 , count( LP3 equal 3, 100) }

draw A1A
draw LP2
draw LP3

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

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

and add column run2
and add column run3

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
]



Column RUN2 is the number of times out of the last 100 days the stock had runs of 10% or more 2 days in a row.

Column RUN3 is the number of times out of the last 100 days the stock had runs of 10% or more 3 days in a row.

Remember, ANYTHING CAN HAPPEN!

Image and video hosting by TinyPic

Fetcher[
/* TRO STAT SCAN - GREEN ON THE SCREEN WITH RUN 15 to 50 */

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)}

set{A1A, count(Long_Profit > .10 , 1)}
set{A2A, count(Long_Profit 1 day ago > .10 , 1)}
set{A3A, count(Long_Profit 2 days ago > .10 , 1)}

set{ LP2, A2A plus A1A }
set{ LP3, A3A plus LP2 }

set{ run2 , count( LP2 equal 2, 100) }
set{ run3 , count( LP3 equal 3, 100) }

draw A1A
draw LP2
draw LP3

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

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

and add column run2
and add column run3

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

B10A above 4

close is between 15 and 50
average volume(90) above 50000
average volume(10) above 250000

sort column 8 descending
]





TheRumpledOne
6,407 posts
msg #57926
Ignore TheRumpledOne
modified
12/10/2007 10:40:41 PM

Fetcher[
/* TRO STAT SCAN - GREEN ON THE SCREEN WITH RUN over 50 */

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{D2A, Days(Long_Profit > .02 , 100)}

set{A1A, count(Long_Profit > .02 , 1)}
set{A2A, count(Long_Profit 1 day ago > .02 , 1)}
set{A3A, count(Long_Profit 2 days ago > .02 , 1)}

set{ LP2, A2A plus A1A }
set{ LP3, A3A plus LP2 }

set{ run2 , count( LP2 equal 2, 100) }
set{ run3 , count( LP3 equal 3, 100) }

draw A1A
draw LP2
draw LP3

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

and add column B2A {OVER2PCT}
and add column D2A {Days }

and add column run2
and add column run3

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

B2A above 50

close above 50
average volume(90) above 500000

sort column 8 descending
]



BIG BOY STOCKS that run 2% or more over 50% of the time.

bturner
4 posts
msg #57928
Ignore bturner
12/10/2007 11:18:45 PM

TRO, can you explain what this 15-50 filter is pulling up. I see that Muddy made some comments, as well as you about it, but I am not sure exactly what this filter is doing.

TheRumpledOne
6,407 posts
msg #57941
Ignore TheRumpledOne
modified
12/11/2007 7:29:08 AM

The selection criteria:

Fetcher[
close is between 15 and 50
average volume(90) above 50000
average volume(10) above 250000
]



Pulling up stocks that are between $15 and $50 using my statistics display.


"B10A above 4" is selecting stocks that have gone up 10% or more from open to high at least 5 times in the last 100 days.


TheRumpledOne
6,407 posts
msg #57942
Ignore TheRumpledOne
12/11/2007 8:02:00 AM

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

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)}

set{A1A, count(Long_Profit > .10 , 1)}
set{A2A, count(Long_Profit 1 day ago > .10 , 1)}
set{A3A, count(Long_Profit 2 days ago > .10 , 1)}

set{ LP2, A2A plus A1A }
set{ LP3, A3A plus LP2 }

set{ run2 , count( LP2 equal 2, 100) }
set{ run3 , count( LP3 equal 3, 100) }

draw A1A
draw LP2
draw LP3


add column HiOp
add column Long_Profit {ProfitPct}

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

and add column run2
and add column run3

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 #58008
Ignore TheRumpledOne
12/12/2007 1:42:02 PM

Fetcher[
/* TRO STAT SCAN - GREED with SYMLIST*/

SYMLIST(BIDU,DRYS,FSTR,ISRG,PCLN,STP,AAPL,POT,RIMM,VIP,CMG,VSEC,FCSX,GIGM,SNCR,BGC,VMW,FTK,BUCY,CMED,LIFC,CF,MTL,EDU,HDB,MA,SID,TKC,LFC,ABB,TEF,GOOG,SSRX,TDG,CNH,ININ,NOV,PFWD,FCX,TTES,BCSI,CTRP,GME,GRMN,MICC,SYNA,DLB,MORN,ITU,MBT,SLT,WX,MR,ATW,HMSY,BHP,WFR,BAP,BBL,BLK,DSX,ESRX,HRBN,SNHY,CAM,LKQX,TISI,AGU,ARD,AMZN,TELOZ,BOOM,CPLA,GLDN,KOP,BTJ,GTI,MEE,SWN,PDA,CCH,FTI,PCP,SDA,OTEX,SNDA,VIVO,BBD,DE,ABAX,FLIR,SXE,GSOL,CHL,CLB,ARGN,EJ,FMCN,DWSN,CYNO)

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

and add column volcnt
and add column volzero

sort column 13 descending
]



TheRumpledOne
6,407 posts
msg #58009
Ignore TheRumpledOne
12/12/2007 2:00:03 PM

Fetcher[

/* TRO STAT SCAN - GREEDIER BASTARD 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, 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 */

SYMLIST(BIDU,DRYS,FSTR,ISRG,PCLN,STP,AAPL,POT,RIMM,VIP,CMG,VSEC,FCSX,GIGM,SNCR,BGC,VMW,FTK,BUCY,CMED,LIFC,CF,MTL,EDU,HDB,MA,SID,TKC,LFC,ABB,TEF,GOOG,SSRX,TDG,CNH,ININ,NOV,PFWD,FCX,TTES,BCSI,CTRP,GME,GRMN,MICC,SYNA,DLB,MORN,ITU,MBT,SLT,WX,MR,ATW,HMSY,BHP,WFR,BAP,BBL,BLK,DSX,ESRX,HRBN,SNHY,CAM,LKQX,TISI,AGU,ARD,AMZN,TELOZ,BOOM,CPLA,GLDN,KOP,BTJ,GTI,MEE,SWN,PDA,CCH,FTI,PCP,SDA,OTEX,SNDA,VIVO,BBD,DE,ABAX,FLIR,SXE,GSOL,CHL,CLB,ARGN,EJ,FMCN,DWSN,CYNO)

sort column 8 descending

]



TheRumpledOne
6,407 posts
msg #58027
Ignore TheRumpledOne
modified
12/12/2007 6:05:48 PM

Fetcher[
/* TRO STAT SCAN - GREED - ETFs */

market is ETF

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

and add column volcnt
and add column volzero

sort column 9 descending
]



If you can compound your money 2% a day... you're rich!!

dbyrt
70 posts
msg #58029
Ignore dbyrt
12/12/2007 6:43:27 PM

Don't forget, this is a very incomplete list of ETFs.

TheRumpledOne
6,407 posts
msg #58060
Ignore TheRumpledOne
modified
12/13/2007 8:16:50 AM

Fetcher[
/* TRO STAT SCAN - GREED - good IPOs since 2005 */

symlist(APEI,SLT,YGE,CLR,FCSX,JASO,CEL,SOLF,FSLR,MR,EDU,MA,TDG,CMG,STP,VOCS,ICE,CF,CMED,BIDU,QMAR,DLB,OXPS)

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)}

DRAW B1A
DRAW B2A ON PLOT B1A
DRAW B3A ON PLOT B1A
DRAW B3A ON PLOT B1A
DRAW B4A ON PLOT B1A
DRAW B5A ON PLOT B1A
DRAW B10A ON PLOT B1A
DRAW B20A ON PLOT B1A
DRAW B50A ON PLOT B1A

add column ClxCl
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 separator

and add column volcnt
and add column volzero

sort column 9 descending
]



Plotting the percent data is interesting.

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