StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 26 27 28 29 30 ... 57 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #66588
Ignore TheRumpledOne
modified
8/23/2008 12:12:45 PM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday */

set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 52)}
set{H2A, count(Long_Profit > .99, 52)}
set{H5052, H1A - H2A}

set{I52, count(Long_Profit > .99 , 52)}
set{fivepct, count(Long_Profit > .05 , 52)}
set{ziphi, count(whiop equal 0 , 52)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 52)}
set{twopct, count(Long_Profit > .02 , 52)}
set{halfpct, count(Long_Profit > .005 , 52)}
set{qtrpct, count(Long_Profit > .0025 , 52)}

add column wkProfitPct
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5052 {50_99}
and add column I52 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

close is above 1
average volume(90) above 500000

draw whiop
draw ziphix
sort column 6 descending

chart-display is weekly
]



I know that there are some of you that can't or don't daytrade. You want to enter a trade and ride it for more than a day.

The TRO STAT SCAN for SWING TRADERS shows which stocks move the most STATISTICALLY during the week.

The reason you can only use this on Saturday and Sunday ( or late Friday night and before the market open on Monday ) is because that is the only time the weekly numbers work properly.

column halfpct is the number of times the weekly high minus the weekly open is over 0.5% for the last 52 weeks.

column onepct is the number of times the weekly high minus the weekly open is over 1% for the last 52 weeks.

column twopct is the number of times the weekly high minus the weekly open is over 2% for the last 52 weeks.

column fivepct is the number of times the weekly high minus the weekly open is over 5% for the last 52 weeks.

column ziphi is the number of times the weekly high minus the weekly open is less than 10 cents for the last 52 weeks.

column wkProfitPct is the most recents weeks profit percent: 100 * ( weekly high minus the weekly open ) / weekly open.

What this tells me is that you can buy at Monday's open, set a take profit of 1% and grow your account week after week. Of course, you can make more if you want to take a more active role in trading.



TheRumpledOne
6,407 posts
msg #66592
Ignore TheRumpledOne
modified
8/23/2008 1:10:58 PM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday */

set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 52)}
set{H2A, count(Long_Profit > .99, 52)}
set{H5052, H1A - H2A}

set{I52, count(Long_Profit > .99 , 52)}
set{fivepct, count(Long_Profit > .05 , 52)}
set{ziphi, count(whiop equal 0 , 52)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 52)}
set{twopct, count(Long_Profit > .02 , 52)}
set{halfpct, count(Long_Profit > .005 , 52)}
set{qtrpct, count(Long_Profit > .0025 , 52)}

add column wkProfitPct
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5052 {50_99}
and add column I52 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

SYMLIST( GHM,GMXR,CF,TITN,BUCY,POT,ENS,MOS,EZPW,TTES,MEE,APEI,KSU,MEA,CAP,FLS,OLN,ISYS,CLHB,WGOV,BABY,CEDC,AFAM,SNHY,WLL,SYUT,CELG,NOV,NGS,CFX,DXPE,AGU,PQ,LL,FLIR,HIL,RBN,AMED,WAB,GTLS,CNQR,BIDU,CYBS,RIMM,PCLN,CMED,HES,ANSS,CSH,BTE,SID,JST,IIIN,URBN,CMP,CIR,UTHR,CSX,ATVID,FMC,AXYS,MA,MPWR,SPW,OXY,MSB,VMI,BKE,NDSN,TISI,MANT,SXE,AZZ,GRC,SOHU,BMI,ICLR,X,NCIT,SCL,ATW,EOC,EME,MR,VSEC,WBSN,MON,TDY,ARG,IIVI,ARO,ESV,SDA,ACL,HUBG,VAR,NPK,SYNA,FLO,FORR)

draw whiop
draw ziphix
sort column 6 descending

chart-display is weekly
]



Remember, these statistics are computed over 52 weeks instead of 100 days, so a 50 in the onepct column means that 50 out of 52 weeks it made one percent.

Can you say "LOCK TRADE"?



TheRumpledOne
6,407 posts
msg #66609
Ignore TheRumpledOne
modified
8/24/2008 2:46:42 PM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday TRADE PICKER */

set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }
set{wkProfitPct, 100 * Long_Profit }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 52)}
set{H2A, count(Long_Profit > .99, 52)}
set{H5052, H1A - H2A}

set{I52, count(Long_Profit > .99 , 52)}
set{fivepct, count(Long_Profit > .05 , 52)}
set{ziphi, count(whiop equal 0 , 52)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 52)}
set{twopct, count(Long_Profit > .02 , 52)}
set{halfpct, count(Long_Profit > .005 , 52)}
set{qtrpct, count(Long_Profit > .0025 , 52)}

add column wkProfitPct
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5052 {50_99}
and add column I52 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

/* SELECTION CRITERIA */

close is above 1
average volume(90) above 500000

/* TRADE PICKER CRITERIA */

onepct ABOVE 47
CLOSE ABOVE MA(50)
MA(50) ABOVE MA(50) 1 DAY AGO
CLOSE ABOVE MA(200)

/* PLOT */

draw whiop
draw ziphix

/* SORT */
sort column 6 descending

chart-display is weekly
]



TheRumpledOne
6,407 posts
msg #66645
Ignore TheRumpledOne
8/25/2008 3:56:10 PM

Fetcher[
/* TRO STAT SCAN - POPPED AT LEAST TWICE LAST WEEK */

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

set{LastPop, days(Long_Profit > .10, 100)}


and add column B10A {GT10%}
and add column LastPop
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 */

chg 1 week ago above 1

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

sort column 5 descending
]



Could be used as an alert to HOT stocks.




billrider321
70 posts
msg #66662
Ignore billrider321
8/25/2008 9:18:50 PM

thanks for u r input what do u do for stops

TheRumpledOne
6,407 posts
msg #66663
Ignore TheRumpledOne
modified
8/25/2008 10:16:02 PM

STOPS ARE FOR SISSIES!

Seriously, look at the chart and place your stop a few pennies under support for longs and a few pennies over resistance for shorts.





jimichelssf
12 posts
msg #66681
Ignore jimichelssf
8/26/2008 10:42:30 AM

TRO....

Thanks for the Stat Scan for Swing Traders...more my speed.

Would the Weekly RSI(2) have a similar role in the weekly scenario as the RSI(2) does in the daily?

IE: Weekly RSI(2) below 1 might mean a price surge in the next week or two?

Thanks again!

James

TheRumpledOne
6,407 posts
msg #66690
Ignore TheRumpledOne
8/26/2008 4:22:13 PM

Yes to the weekly rsi(2) question.



TheRumpledOne
6,407 posts
msg #66691
Ignore TheRumpledOne
modified
8/26/2008 4:24:44 PM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Tuesday after market close */

set{wclop, close - open 1 day ago}
set{whiop, high 2 day high - open 1 day ago}
set{Long_Profit, whiop / open 1 day ago }
set{wkProfitPct, 100 * Long_Profit }

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

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

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

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

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

set{H1A, count(Long_Profit > .49 , 01)}
set{H2A, count(Long_Profit > .99, 01)}
set{H5001, H1A - H2A}

set{I01, count(Long_Profit > .99 , 01)}
set{fivepct, count(Long_Profit > .05 , 01)}
set{ziphi, count(whiop equal 0 , 01)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 01)}
set{twopct, count(Long_Profit > .02 , 01)}
set{halfpct, count(Long_Profit > .005 , 01)}
set{qtrpct, count(Long_Profit > .0025 , 01)}

add column wkProfitPct
add column wclop
add column whiop
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5001 {50_99}
and add column I01 {100}
and add column separator
and add column weekly open {wopen}
and add column weekly high {whigh}
and add column weekly low {wlow}
and add column weekly close {wclose}
and add column separator

SYMLIST( GHM,GMXR,CF,TITN,BUCY,POT,ENS,MOS,EZPW,TTES,MEE,APEI,KSU,MEA,CAP,FLS,OLN,ISYS,CLHB,WGOV,BABY,CEDC,AFAM,SNHY,WLL,SYUT,CELG,NOV,NGS,CFX,DXPE,AGU,PQ,LL,FLIR,HIL,RBN,AMED,WAB,GTLS,CNQR,BIDU,CYBS,RIMM,PCLN,CMED,HES,ANSS,CSH,BTE,SID,JST,IIIN,URBN,CMP,CIR,UTHR,CSX,ATVID,FMC,AXYS,MA,MPWR,SPW,OXY,MSB,VMI,BKE,NDSN,TISI,MANT,SXE,AZZ,GRC,SOHU,BMI,ICLR,X,NCIT,SCL,ATW,EOC,EME,MR,VSEC,WBSN,MON,TDY,ARG,IIVI,ARO,ESV,SDA,ACL,HUBG,VAR,NPK,SYNA,FLO,FORR)

draw whiop
draw ziphix
sort column 5 descending

chart-display is weekly
]




Let's see how the list is doing.

TheRumpledOne
6,407 posts
msg #66695
Ignore TheRumpledOne
modified
8/26/2008 5:08:13 PM

Fetcher[
/* TRO STAT SCAN - POPPED 10 PERCENT OR MORE TODAY */

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 Long_Profit {UpPct}
and add column HiOp {UpCents}

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

Long_Profit above .099999
close above 1
average volume(90) above 500000

sort column 5 descending
]



Shows stocks that went up 10% or more today.



StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 26 27 28 29 30 ... 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.