StockFetcher Forums · Filter Exchange · /* TRO - DAILY/WEEKLY UPTREND FILTER DISPLAY */<< >>Post Follow-up
TheRumpledOne
6,407 posts
msg #61396
Ignore TheRumpledOne
modified
4/11/2008 6:06:38 PM

Fetcher[
/* TRO - DAILY/WEEKLY UPTREND FILTER DISPLAY */

set{ upday, count( close above open, 1) }
set{ upweek, count( weekly close above weekly open, 1) }

add column upday
add column upweek

/* SELECTION CRITERIA */

upday above 0
upweek above 0

SYMLIST(GHM,HOLX,ISRG,POT,RIMM,CF,TITN,BUCY,TNE,MDR,PCLN,RRC,NEU,SID,MA,MON,SWN,MOS,BIDU,FSTR,KOP,ATW,NGS,RIO,CCH,LKQX,ARD,KWK,PQ,CLR,GENC,SQM,CNQR,AFSI,RIG,CMED,BLK,EOC,AGU,TTES,SD,SNHY,HK,CEDC,VIVO,FLS,DNR,CMG,PSEM,VIP,CELG,CTRP,CLB,EDU,GEF,FTI,ISYS,WDC,JST,HLF,WFT,SDA,URBN,DE,BMI,GTLS,KEX,BDE,CSX,EXPO,GGB,MTL,CYBS,ENI,RDC,BAP,ENS,KSU,MFLO,MCRS,GME,ROS,CMCO,AIRM,EXLS,CHL,LIFC,GFA,HOS,CVA,OTEX,SVR,RSTI,VMI,FST,BVN,APA,HES,KNDL,NOV)


sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61398
Ignore TheRumpledOne
modified
4/11/2008 6:16:43 PM

Fetcher[
/* TRO - 1, 5, 20, 60 DAY UPTREND FILTER DISPLAY */

set{ upday, count( close above open, 1) }
set{ up05, count( close above open 5 days ago, 1) }
set{ up20, count( close above open 20 days ago, 1) }
set{ up60, count( close above open 60 days ago, 1) }

add column upday
add column up05
add column up20
add column up60

/* SELECTION CRITERIA */

upday above 0
up05 above 0
up20 above 0
up60 above 0


SYMLIST(GHM,HOLX,ISRG,POT,RIMM,CF,TITN,BUCY,TNE,MDR,PCLN,RRC,NEU,SID,MA,MON,SWN,MOS,BIDU,FSTR,KOP,ATW,NGS,RIO,CCH,LKQX,ARD,KWK,PQ,CLR,GENC,SQM,CNQR,AFSI,RIG,CMED,BLK,EOC,AGU,TTES,SD,SNHY,HK,CEDC,VIVO,FLS,DNR,CMG,PSEM,VIP,CELG,CTRP,CLB,EDU,GEF,FTI,ISYS,WDC,JST,HLF,WFT,SDA,URBN,DE,BMI,GTLS,KEX,BDE,CSX,EXPO,GGB,MTL,CYBS,ENI,RDC,BAP,ENS,KSU,MFLO,MCRS,GME,ROS,CMCO,AIRM,EXLS,CHL,LIFC,GFA,HOS,CVA,OTEX,SVR,RSTI,VMI,FST,BVN,APA,HES,KNDL,NOV)


sort column 5 descending
]



WESTFALL
9 posts
msg #61761
Ignore WESTFALL
modified
4/24/2008 12:33:05 AM

set{Win_loss,Close - open}
set{WL100,count(Win_loss > 0,100)}
add column WL100

set{wl5,count(Win_loss > 0,5)}
add column wl5

set{wl5mult, wl5 * 30}
set{wlgreed, wl5mult + wl100}
add column wlgreed

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

set{a100a,count(Long_Profit > .001,100)}
set{a200a,count(Long_Profit > .005,100)}
set{a300a,count(Long_Profit > .01,100)}
set{a400a,count(Long_Profit > .02,100)}
set{a500a,count(Long_Profit > .05,100)}

set{b100a, a100a}
set{b200a, a200a + a100a}
set{b300a, a300a + b200a}
set{b400a, a400a + b300a}
set{b500a, a500a + b400a}

set{c100a,count(Long_Profit > .001,5)}
set{c200a,count(Long_Profit > .005,5)}
set{c300a,count(Long_Profit > .01,5)}
set{c400a,count(Long_Profit > .02,5)}
set{c500a,count(Long_Profit > .05,5)}

set{d100a, c100a}
set{d200a, c200a + c100a}
set{d300a, c300a + d200a}
set{d400a, c400a + d300a}
set{d500a, c500a + d400a}

set{e100a, d100a*30}
set{e200a, d200a *30}
set{e300a, d300a *30}
set{e400a, d400a *30}
set{e500a, d500a *30}


set{longgreed, b500a + e500a}

set{LoOp, open - low}
set{Short_Profit, LoOp/open}

set{f100a,count(Short_Profit > .001,100)}
set{f200a,count(Short_Profit > .005,100)}
set{f300a,count(Short_Profit > .01,100)}
set{f400a,count(Short_Profit > .02,100)}
set{f500a,count(Short_Profit > .05,100)}

set{g100a, f100a}
set{g200a, f200a + f100a}
set{g300a, f300a + g200a}
set{g400a, f400a + g300a}
set{g500a, f500a + g400a}

set{h100a,count(Short_Profit > .001,5)}
set{h200a,count(Short_Profit > .005,5)}
set{h300a,count(Short_Profit > .01,5)}
set{h400a,count(Short_Profit > .02,5)}
set{h500a,count(Short_Profit > .05,5)}

set{i100a, h100a}
set{i200a, h200a + h100a}
set{i300a, h300a + i200a}
set{i400a, h400a + i300a}
set{i500a, h500a + i400a}

set{j100a, i100a*30}
set{j200a, i200a *30}
set{j300a, i300a *30}
set{j400a, i400a *30}
set{j500a, i500a *30}

set{shortgreed, g500a + i500a}

set{greedratio, longgreed/shortgreed}


add column longgreed
add column greedratio

add column separator

add column a200a{.5%(100day)}
add column a300a{1%(100day)}}
add column a400a{2%(100day)}}
add column a500a{5%(100day)}}

add column separator

add column c200a{.5%(5day)}
add column c300a{1%(5day)}
add column c400a{2%(5day)}
add column c500a{5%(5day)}

set{gpwgreed, longgreed+wlgreed}
add column gpwgreed

set{totalgreed, gpwgreed * greedratio}
add column totalgreed

close above 5
volume above 100000
average volume (90) above 1000000

sort column 21 descending



WALLSTREETGENIUS
983 posts
msg #61866
Ignore WALLSTREETGENIUS
4/27/2008 5:45:40 PM

I love the "up week" coding Avery. Cant tell you how valuable this will be to me. By adding this to all my filters, obviously it will tell me in advance the Linear Progression of these stocks. As always...excellent work, and thank you!


RIGGS

TheRumpledOne
6,407 posts
msg #61867
Ignore TheRumpledOne
4/27/2008 5:56:32 PM

You're welcome, Riggs.

It's just a simple display but very profitable.

Strong stocks that remain above the weekly open tend to go UP.

Weekly range is usually bigger than daily range so you're more likely to make money when stock stays above the weekly open.

If ONLY we had monthly open OR openasof(mm.dd.yyyy) - How about it, SF?


chetron
2,817 posts
msg #61946
Ignore chetron
4/29/2008 10:10:40 PM

KINDA, SORTA, LIKEA...

Fetcher[

/* TACHIKAWA */

SET{VMAX,MAX(OPEN,CLOSE)}
SET{VMIN,MIN(OPEN,CLOSE)}

SET{BUY_ME,VMAX 8 DAY HIGH 1 DAY AGO}
SET{BUY_ME2,VMAX 13 DAY HIGH 1 DAY AGO}

ADD COLUMN BUY_ME
DRAW BUY_ME ON PLOT PRICE
DRAW BUY_ME2 ON PLOT PRICE

OPEN BELOW BUY_ME2
RSI(2) > RSI(2) 1 DAY AGO
OPEN BELOW HIGH 8 DAY HIGH 1 DAY AGO
OPEN CROSSED ABOVE BUY_ME
CLOSE > 1
VOLUME > 100000

]



chetron
2,817 posts
msg #61948
Ignore chetron
4/29/2008 10:39:18 PM

COME TO THINK OF IT I WAS WRONG....

BUT I LIKE THE UPDAY ON THE TOGGLE
AND WHEN THE 60 FAILS, IT IS TIME TO BAIL...

Fetcher[


/* TRO - 1, 5, 20, 60 DAY UPTREND FILTER DISPLAY */

set{ upday, count( close above open, 1) }
set{ up05, count( close above open 5 days ago, 1) }
set{ up20, count( close above open 20 days ago, 1) }
set{ up60, count( close above open 60 days ago, 1) }

add column upday
add column up05
add column up20
add column up60

/* SELECTION CRITERIA */

upday above 0
up05 above 0
up20 above 0
up60 above 0
UPDAY 1 DAY AGO < .5

SYMLIST(GHM,HOLX,ISRG,POT,RIMM,CF,TITN,BUCY,TNE,MDR,PCLN,RRC,NEU,SID,MA,MON,SWN,MOS,BIDU,FSTR,KOP,ATW,NGS,RIO,CCH,LKQX,ARD,KWK,PQ,CLR,GENC,SQM,CNQR,AFSI,RIG,CMED,BLK,EOC,AGU,TTES,SD,SNHY,HK,CEDC,VIVO,FLS,DNR,CMG,PSEM,VIP,CELG,CTRP,CLB,EDU,GEF,FTI,ISYS,WDC,JST,HLF,WFT,SDA,URBN,DE,BMI,GTLS,KEX,BDE,CSX,EXPO,GGB,MTL,CYBS,ENI,RDC,BAP,ENS,KSU,MFLO,MCRS,GME,ROS,CMCO,AIRM,EXLS,CHL,LIFC,GFA,HOS,CVA,OTEX,SVR,RSTI,VMI,FST,BVN,APA,HES,KNDL,NOV)


sort column 5 descending

]



StockFetcher Forums · Filter Exchange · /* TRO - DAILY/WEEKLY UPTREND FILTER DISPLAY */<< >>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.