StockFetcher Forums · Filter Exchange · *** TESTING *** WORK IN PROGRESS ***<< 1 2 3 4 5 ... 6 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #61868
Ignore TheRumpledOne
modified
4/27/2008 6:17:36 PM

Fetcher[
set{diff,close / ind(^IXIC,close)}

set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

diff reached a new 1 year low and compare with ^IXIC

market is nasdaq
volume above 300000
RS_HI above 1
RS_LO below 1


add column diff
add column RS_HI
add column RS_LO

add column ind(^IXIC,close)
add column relative strength(^IXIC,100)

draw relative strength(^IXIC,100)

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61869
Ignore TheRumpledOne
modified
4/27/2008 6:25:31 PM

Fetcher[
set{diff,close / ind(^IXIC,close)}

set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

set{RSb,days(relative strength(^IXIC,100) is above 1 , 100)}
set{RSa,days(relative strength(^IXIC,100) is below 1 , 100)}
set{RSxZERO, RSa - RSb}


diff reached a new 1 year low and compare with ^IXIC

market is nasdaq
volume above 300000
RS_HI above 1
RS_LO below 1


add column diff
add column RS_HI
add column RS_LO
add column RSxZERO
add column ind(^IXIC,close)
add column relative strength(^IXIC,100)

draw relative strength(^IXIC,100)

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61871
Ignore TheRumpledOne
modified
4/27/2008 7:25:56 PM

*** another direction.....

Fetcher[
/* TRO - HIGH MINUS OPEN FIVE DAY DISPLAY RSI(2) < 1 two or more days */

set{xRange, high - low}
set{AvgRng, cma(xRange,5) }
set{HiOp, high - open}
set{Long_Profit, HiOp }

set{B10A, count(Long_Profit > .05 , 100)}

set{A10A, count(Long_Profit > .05 , 1)}
set{chg, sum( A10A - A10A 1 day ago ,5)}

set{rsi2days, days(rsi(2) above 1, 5) }

set{ a1, hiop 1 day ago }
set{ a2, hiop 2 day ago }
set{ a3, hiop 3 day ago }
set{ a4, hiop 4 day ago }


set{ b1, hiop + a1}
set{ b2, b1 + a2 }
set{ b3, b2 + a3}
set{ b4, b3 + a3 }

set{ profit, b4 - 0.10 }

set{BTSize, close - low}
set{BTcount, count(BTSize below 0.01 , 100)}


and add column B10A {GT_05 }
and add column AvgRng
and add column rsi2days
and add column BTcount
add column relative strength(^IXIC,100) {RelStr}

and add column separator

add column hiop
add column hiop 1 day ago { hiop1 }
add column hiop 2 day ago { hiop2 }
add column hiop 3 day ago { hiop3}
add column hiop 4 day ago { hiop4 }
add column profit
and add column separator

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

rsi2days above 1


CLOSE ABOVE .50

VOLUME ABOVE 300000
AVERAGE VOLUME(90) ABOVE 300000

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61906
Ignore TheRumpledOne
modified
4/28/2008 8:18:58 PM

Fetcher[
set{diff,close / ind(^IXIC,close)}

set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

set{RSb,days(relative strength(^IXIC,100) is above 1,100)}
set{RSa,days(relative strength(^IXIC,100) is below 1, 100)}
set{RSxZERO, RSa - RSb}

set{RSxUP, count( relative strength(^IXIC,100) crossed above 1, 100) }
set{RSxDN, count( relative strength(^IXIC,100) crossed below 1, 100) }

diff reached a new 1 year low and compare with ^IXIC

market is nasdaq
volume above 300000
RS_HI above 1
RS_LO below 1


add column diff
add column RS_HI
add column RS_LO
add column RSxZERO
add column RSxUP
add column RSxDN

add column relative strength(^IXIC,100)

draw relative strength(^IXIC,100)
do not draw RS_HI
do not draw RS_LO

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61907
Ignore TheRumpledOne
4/28/2008 8:32:54 PM

Fetcher[


set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

set{RSb,days(relative strength(^IXIC,100) is above 1,100)}
set{RSa,days(relative strength(^IXIC,100) is below 1, 100)}
set{RSxZERO, RSa - RSb}

set{RSxUP, count( relative strength(^IXIC,100) crossed above 1, 100) }
set{RSxDN, count( relative strength(^IXIC,100) crossed below 1, 100) }



market is nasdaq
RS_HI above 1.5




add column RS_HI
add column RS_LO
add column RSxZERO
add column RSxUP
add column RSxDN

add column relative strength(^IXIC,100)

draw relative strength(^IXIC,100)
do not draw RS_HI
do not draw RS_LO

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61908
Ignore TheRumpledOne
modified
4/28/2008 8:38:41 PM

Fetcher[

set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

set{RSb,days(relative strength(^IXIC,100) is above 1,100)}
set{RSa,days(relative strength(^IXIC,100) is below 1, 100)}
set{RSxZERO, RSa - RSb}

set{RSxUP, count( relative strength(^IXIC,100) crossed above 1, 100) }
set{RSxDN, count( relative strength(^IXIC,100) crossed below 1, 100) }

add column RS_HI
add column RS_LO
add column RSxZERO
add column RSxUP
add column RSxDN

add column relative strength(^IXIC,100)

/* looking for divergence */

relative strength(^IXIC,100) above relative strength(^IXIC,100) 2 day ago
ind(^IXIC,close) below ind(^IXIC,close) 2 day ago

market is nasdaq
VOLUME ABOVE 300000
AVERAGE VOLUME(90) ABOVE 300000

draw relative strength(^IXIC,100)
do not draw RS_HI
do not draw RS_LO

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #61909
Ignore TheRumpledOne
4/28/2008 8:42:09 PM

Fetcher[

set{RS_HI, relative strength(^IXIC,100) 100 day high }
set{RS_LO, relative strength(^IXIC,100) 100 day low }

set{RSb,days(relative strength(^IXIC,100) is above 1,100)}
set{RSa,days(relative strength(^IXIC,100) is below 1, 100)}
set{RSxZERO, RSa - RSb}

set{RSxUP, count( relative strength(^IXIC,100) crossed above 1, 100) }
set{RSxDN, count( relative strength(^IXIC,100) crossed below 1, 100) }

market is nasdaq

/* looking for divergence */

relative strength(^IXIC,100) above relative strength(^IXIC,100) 10 days ago
ind(^IXIC,close) below ind(^IXIC,close) 10 days ago

add column RS_HI
add column RS_LO
add column RSxZERO
add column RSxUP
add column RSxDN

add column relative strength(^IXIC,100)

draw relative strength(^IXIC,100)
do not draw RS_HI
do not draw RS_LO

sort column 5 descending
]



TheRumpledOne
6,407 posts
msg #64284
Ignore TheRumpledOne
modified
6/24/2008 12:37:40 PM

HSVLY
ANO
WIRE
IMR
ATI
NRP
BW
TGB
MRB
UEC
ACH
TIE
AHGP
NUE
PLG
MT
AUY
TX
ROCK
RBY
AKS
PKX
FCL
IVN
UXG
MXM
PZG
NX
SA
AA
CDY
TONS
SIM
ZEUS
LMC
SIL
PLM
CRS
STLD
TCK
NWPX
BQI
CLF
ROY
NAK
ETQ
AZC
MFN
MDM
KALU
FEED
URZ
AAUK
JRCC
BTU
PMU
XPL
GMO
VGZ
USU
BAA
EZM
NG
MVG
NSU
MGH
GOLD
HMY
GRZ
DROOY
AZK
SLT
HL
KGC
FCX
NEM
WLB
WLT
AAU
GG
ICO
CMC
TS
TG
KBX
AGT
IIIN
MAD
LIHR
PAL
PAAS
AEM
RIO
ZINC
FDG
FRG
PVG
SPSX
CENX
SYNL
GFI
WOR
PBM
RTI
AU
OZN
MEE
SWC
MMG
URRE
SSRI
CCJ
MGN
BVN
OLN
GSS
JAG
KRY
CDE
NANX
GRS
NXG
ARLP
MTL
MEA
DSUP
TRE
SLW
CPSL
GNA
DNN
NGD
CGR
XRA
ABX
CHNR
HAYN
FRD
GGB
GBN
GNI
BMD
THM
PVR
RGLD
SCHN
RTP
ACI
ANR
USEG
NCOC
SID
CXZ
BOOM
HSC
RIC
YZC
EXK
AXU
ANV
CNX
BHP
PCU
USAP
DEJ
EGO
POT
EGI
IAG


luc1grunt
622 posts
msg #64474
Ignore luc1grunt
6/29/2008 3:50:26 PM

You are animal Avery!

WALLSTREETGENIUS
983 posts
msg #64476
Ignore WALLSTREETGENIUS
modified
6/29/2008 4:09:11 PM

....I like what you're doing here Avery....

StockFetcher Forums · Filter Exchange · *** TESTING *** WORK IN PROGRESS ***<< 1 2 3 4 5 ... 6 >>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.