StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 8 9 10 11 12 ... 57 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #58401
Ignore TheRumpledOne
modified
12/21/2007 5:32:01 PM

Fetcher[
/* TRO STAT SCAN - At least 1 pop in last 5 days */

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

set{ ftest, count( B10A > B10A 5 days ago, 5) }
set{ fails, count( ftest equal 0 , 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 B10A 5 days ago {OVER10PCT_5}
and add column D10A {Days }

and add column run2
and add column run3
and add column fails

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

B10A above 10
B10A above B10A 5 days ago

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

sort column 8 descending
]



I think this display tells the story...

These stocks popped up at least 10% at least once in the last 5 days.

All you need to do is catch one a day!!





TheRumpledOne
6,407 posts
msg #58417
Ignore TheRumpledOne
modified
12/22/2007 10:27:01 AM

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

/* Long Profit Percent Statistics Display */

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

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

/* SELECTION CRITERIA */

B10A above 10

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

sort column 5 descending
]









TheRumpledOne
6,407 posts
msg #58418
Ignore TheRumpledOne
modified
12/22/2007 11:28:15 AM

Fetcher[
/* TRO STAT SCAN - BUCK COUNT */

/* Long Profit Statistics Display */

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

set{B10A, count(Long_Profit > 1.00 , 100)}

set{chg, count(Long_Profit > 1.00 , 5)}

add column B10A {gt1.00}
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


/* SELECTION CRITERIA */

B10A above 0
average volume(10) above 250000

sort column 5 descending
]



Displays how many times per week open to high was over one dollar.

4 means 4 out of 5 days or 80% chance of making over a dollar from open to high.

5 means 5 out of 5 days or 100% chance of making over a dollar from open to high.

BUCK SEASON IS OPEN!!

TheRumpledOne
6,407 posts
msg #58421
Ignore TheRumpledOne
modified
12/22/2007 11:40:49 AM

Fetcher[
/* TRO STAT SCAN - 4 POINT BUCKS OR BETTER */

/* Long Profit Statistics Display */

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

set{B10A, count(Long_Profit > 1.00 , 100)}

set{chg, count(Long_Profit > 1.00 , 5)}

add column B10A {gt1.00}
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


/* SELECTION CRITERIA */

chg ABOVE 3
chg 1 week ago ABOVE 3
chg 2 weeks ago ABOVE 3
chg 3 weeks ago ABOVE 3
chg 4 weeks ago ABOVE 3
chg 5 weeks ago ABOVE 3
chg 6 weeks ago ABOVE 3
chg 7 weeks ago ABOVE 3
chg 8 weeks ago ABOVE 3

average volume(10) above 250000

sort column 5 descending
]



BUCK SEASON IS OPEN!!

TheRumpledOne
6,407 posts
msg #58422
Ignore TheRumpledOne
12/22/2007 11:43:04 AM

Fetcher[
/* TRO STAT SCAN - 3 POINT BUCKS OR BETTER */

/* Long Profit Statistics Display */

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

set{B10A, count(Long_Profit > 1.00 , 100)}

set{chg, count(Long_Profit > 1.00 , 5)}

add column B10A {gt1.00}
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


/* SELECTION CRITERIA */

chg ABOVE 2
chg 1 week ago ABOVE 2
chg 2 weeks ago ABOVE 2
chg 3 weeks ago ABOVE 2
chg 4 weeks ago ABOVE 2
chg 5 weeks ago ABOVE 2
chg 6 weeks ago ABOVE 2
chg 7 weeks ago ABOVE 2
chg 8 weeks ago ABOVE 2

average volume(10) above 250000

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #58431
Ignore TheRumpledOne
modified
12/22/2007 3:16:11 PM

Fetcher[
/* TRO STAT SCAN - BUCK COUNT */

/* Long Profit Statistics Display */

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

set{B10A, count(Long_Profit > 1.00 , 100)}

set{chg, count(Long_Profit > 1.00 , 5)}

add column B10A {gt1.00}
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


/* SELECTION CRITERIA */

symlist(BIDU,ISRG,POT,RIMM,STP,VIP,AAPL,CMG,FCSX,FSTR,PCLN,VSEC,SNCR,VMW,BUCY,CNH,CF,SID,EDU,TKC,MDR,GIGM,GOOG,TEF,FTK,ATW,ININ,LIFC,NOV,CMED,MR,TTES,BCSI,GME,HDB,HMSY,MA,MICC,WFR,DLB,RRC,HRBN,MBT,TISI,ABB,HOLX,FCX,CTRP,MORN,GRMN,BAP,BLK,ESRX,MEE,KWK,AGU,LKQX,ARD,SLT,AMZN,NDAQ,CPLA,BOOM,ABAX,KOP,LFC,CLB,TDG,GTI,FMCN,PFWD,HURN,ANSS,OXPS,SWN,CCH,ENS,VIVO,OTEX,GMCR,DE,ICE,BBD,CEDC,CHL,CYBS,WGOV,GLDN,GSOL,YGE,BGC,ARGN,TWGP,IRIS,NVDA,ITU,BABY,MTW,WMS,SNHY)

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #58509
Ignore TheRumpledOne
modified
12/25/2007 10:58:50 AM

Fetcher[
/* TRO STAT SCAN - SOLAR */

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{Low5, count( low equal low 5 day low, 1) }

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

set{ ftest, count( B10A > B10A 5 days ago, 5) }
set{ fails, count( ftest equal 0 , 100 ) }

draw A1A
draw LP2
draw LP3

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

and add column B10A {OVER10PCT}
and add column B10A 5 days ago {OVER10PCT_5}
and add column D10A {Days }

and add column run2
and add column run3
and add column fails

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

symlist(SOEN,CSUN,CSOL,DSTI,AKNS,HOKU,XSNX,ESLR,CSIQ,SOLF,LDK,WWAT,TSL,ICPR,SESI,ASTIZ,SPWR,FSLR,ENER,YGE,BTUI,SLTN,ASTI,SPIR,SOPW,STP,JASO,WFR,SLRE)

sort column 9 descending
]



SOEN
CSUN
CSOL
DSTI
AKNS
HOKU
XSNX
ESLR
CSIQ
SOLF
LDK
WWAT
TSL
ICPR
SESI
ASTIZ
SPWR
FSLR
ENER
YGE
BTUI
SLTN
ASTI
SPIR
SOPW
STP
JASO
WFR
SLRE


TheRumpledOne
6,407 posts
msg #58518
Ignore TheRumpledOne
12/25/2007 10:51:33 PM

Fetcher[
/* TRO STAT SCAN */

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

set{ ftest, count( B10A > B10A 5 days ago, 5) }
set{ fails, count( ftest equal 0 , 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 B10A 5 days ago {OVER10PCT_5}
and add column D10A {Days }

and add column run2
and add column run3
and add column fails

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

symlist(ABAX,ARD,ATVI,ATW,BEAV,BUCY,CCC,CF,CNQR,CNX,CPRT,CRM,CRZO,DECK,FWLT,GEOY,GME,HOLX,HP,INWK,JEC,LKQX,MANT,MOGN,MON,MOS,NKE,PRGO,RHB,RRC,SIAL,SID,SRCL,STLD,TRA,TRLG,UAPH,UNH,VIP,WLP)

sort column 8 descending
]



TheRumpledOne
6,407 posts
msg #58610
Ignore TheRumpledOne
modified
12/29/2007 2:58:04 PM

Fetcher[
/* TRO STAT SCAN */

set{Low5, count( low equal low 5 day low , 1 ) }

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

set{ ftest, count( B10A > B10A 5 days ago, 5) }
set{ fails, count( ftest equal 0 , 100 ) }

draw A1A
draw LP2
draw LP3

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

and add column B10A {OVER10PCT}
and add column B10A 5 days ago {OVER10PCT_5}
and add column D10A {Days }

and add column run2
and add column run3
and add column fails

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

symlist(BIDU,CMG,ISRG,POT,RIMM,STP,VIP,AAPL,FSTR,MDR,PCLN,VSEC,FCSX,SNCR,ATW,BUCY,NOV,CF,SID,TKC,GIGM,WX,GOOG,TEF,VMW,FTK,CNH,LIFC,ININ,MR,EDU,GME,HDB,HMSY,MA,TTES,WFR,DLB,MICC,RRC,HRBN,MBT,TISI,ARD,ABB,CMED,FCX,MORN,CTRP,BLK,ESRX,DSX,MEE,KWK,ATLS,AGU,SLT,ENS,AMZN,NDAQ,CPLA,ABAX,KOP,BGC,HOLX,TDG,GTI,ARGN,HURN,PFWD,BAP,GRMN,ANSS,OXPS,SWN,LKQX,FTI,CAM,SII,JST,OTEX,VIVO,GMCR,BOOM,DE,ICE,PSEM,CEDC,CYBS,GSOL,CHL,DNR,LFC,CLB,DWSN,FMCN,NVDA,IRIS,ITU,MTW)

sort column 9 descending
]



TheRumpledOne
6,407 posts
msg #58776
Ignore TheRumpledOne
1/6/2008 12:30:58 PM

Fetcher[
/* TRO STAT SCAN */

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

set{ ftest, count( B10A > B10A 5 days ago, 5) }
set{ fails, count( ftest equal 0 , 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 B10A 5 days ago {OVER10PCT_5}
and add column D10A {Days }

and add column run2
and add column run3
and add column fails

and add column separator

and add column volcnt
and add column volzero

/* SELECTION CRITERIA */

symlist(BIDU,ISRG,POT,STP,VIP,FCSX,MDR,PCLN,AAPL,RIMM,ATW,BUCY,CMED,CNH,NOV,CF,EDU,SID,CMG,FSTR,SNCR,WX,LIFC,HMSY,MA,TKC,TTES,GME,RRC,ESRX,HRBN,MBT,SLT,ARD,FTI,KOP,GIGM,CLB,GOOG,HOLX,DWSN,NGS,FCX,MR,HDB,WFR,CTRP,MICC,MORN,BAP,DLB,BLK,MEE,KWK,SWN,ATLS,AGU,CCH,LKQX,TISI,CAM,ENS,AMZN,CPLA,DE,ABB,BTJ,TDG,IRIS,ANSS,OXPS,SII,OII,NDAQ,OTEX,BOOM,GMCR,CEDC,CYBS,ABAX,CHL,GSOL,BPHX,DNR,MON,GTI,FMCN,PFWD,HURN,BHP,GRMN,DSX,GILD,SLB,HUM,NE,PDA,VIVO,JST,NTG)

sort column 8 descending
]



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