StockFetcher Forums · Filter Exchange · big incredible filter for you called rsi(2) power scan<< 1 2 3 >>Post Follow-up
acfncp3
59 posts
msg #73017
Ignore acfncp3
3/23/2009 5:00:12 AM

I think that was the target on a pullback. This filter is great and I have been exploring it this weekend and think I have some ideas on what the data is telling me. But Mary can you clarify how you use it for entries and exits. What type of sorts do you do on the data and what does that tell you as far as what should happen if the setup is correct.


Thanks

chetron
2,817 posts
msg #73018
Ignore chetron
modified
3/23/2009 8:46:38 AM

AND OF COURSE....


Fetcher[



/* rsi(2) power scan */
/* WITH CHETRONISMS */
/* ADDED VOLUME THING */
/* SUPER TIGHT LONGS */
/* VARME REPRESENTS HOW MANY DAYS RSI(2) HAS BEEN ABOVE 98 IN THE LAST 34 DAYS */

set{rsi_MUD,days(rsi(2) above 2,100)}
set{rsi_run,days(rsi(2) BELOW 98,100)}
SET{VARME,COUNT(RSI_RUN ABOVE .5,34)}
ADD COLUMN VARME

SET{VAR1,COUNT(RSI_MUD CROSSED BELOW .5,1)}
SET{VAR2,COUNT(RSI_RUN CROSSED BELOW .5,1)}
SET{VTRIGGER,VAR1 + VAR2}
DRAW RSI_RUN ON PLOT RSI_MUD

RSI_MUD BELOW .5
RSI_MUD 1 DAY AGO ABOVE .5

DO NOT DRAW VTRIGGER
stock is optionable
average volume(30) above 750000

SET{VAR51,AVGVOL(100) * 2}
SET{TRIGGER,COUNT(VOLUME ABOVE VAR51,1)}
SET{VAR52,VOLUME}

DRAW TRIGGER
DRAW AVGVOL(100)
VOLUME ABOVE VAR51
DO NOT DRAW VAR51

CLOSE ABOVE .1

add column rsi(2)
add column rsi(2) 1 day ago {rsi2 -1}
add column rsi(2) 2 days ago {rsi2 -2}
add column rsi(2) 3 days ago {rsi2 -3}
add column rsi(2) 4 days ago {rsi2 -4}
add column rsi(2) 5 days ago {rsi2 -5}
add column rsi(2) 6 days ago {rsi2 -6}
add column rsi(2) 7 days ago {rsi2 -7}
add column rsi(2) 8 days ago {rsi2 -8}
add column rsi(2) 9 days ago {rsi2 -9}
add column rsi(2) 10 days ago {rsi2 -10}
add column rsi(2) 11 days ago {rsi2 -11}
add column rsi(2) 12 days ago {rsi2 -12}
add column rsi(2) 13 days ago {rsi2 -13}
add column rsi(2) 14 days ago {rsi2 -14}
add column rsi(2) 15 days ago {rsi2 -15}
add column rsi(2) 16 days ago {rsi2 -16}
add column rsi(2) 17 days ago {rsi2 -17}

set{sm%, weekly atr(8)/ weekly close(8)}

add column sm%

SORT COLUMN 5 DESCENDING


]



TheRumpledOne
6,407 posts
msg #73020
Ignore TheRumpledOne
modified
3/23/2009 11:51:10 AM

You guys must have forgotten about these:

Fetcher[
/* BOTTOM FINDER STATISTICS - How many times has it hit bottom */

set{LOW5, count(close equal close 5 day low, 100)}
set{LOW13, count(close equal close 13 day low, 100)}
set{LOW26, count(close equal close 26 day low, 100)}
set{LOW50, count(close equal close 50 day low, 100)}
set{LOW200, count(close equal close 200 day low, 100)}

/* VOLUME CALCULATIONS */
set{v, volume 1 day ago}
set{volinc, volume - v}
set{volpc, volinc / v}
set{volpct, volpc * 100}

set{VolZ, days(volume < 1,100)}
set{VolUp, days(volume is below volume 1 day ago,100)}
set{VolDn, days(volume is above volume 1 day ago,100)}
set{VlXvl, VolUp - VolDn}

set{vck1, volume 1 day ago }
set{vck, volume / vck1 }
set{vdbl, days(vck < 2, 100)}

/* END VOLUME CALCULATIONS */

/* selection criteria */

symlist(qqqq,dia,spy)

and add column LOW5
and add column LOW13
and add column LOW26
and add column LOW50
and add column LOW200

and add column VlXvl
and add column Vdbl
and add column volpct

sort column 9 descending
]






Fetcher[
/* RSI 2 SLOT MACHINE */

and add column RSI(2)
and add column WEEKLY RSI(2)
and add column separator
and add column RSI(2) 5 day low
and add column RSI(2) 13 day low
and add column RSI(2) 26 day low
and add column RSI(2) 50 day low
and add column RSI(2) 200 day low
and add column separator
and add column WEEKLY RSI(2) 13 week low
and add column WEEKLY RSI(2) 26 week low
and add column WEEKLY RSI(2) 52 week low

/* selection criteria */

symlist(qqqq,dia,spy)

sort column 5 ascending
]



So many filters, so little time...LOL!

chetron
2,817 posts
msg #73022
Ignore chetron
3/23/2009 12:01:37 PM

THANX TRO

MARY4MONEY
806 posts
msg #73032
Ignore MARY4MONEY
3/23/2009 5:59:46 PM

how would you write a filter saying 2 to 5 days ago rsi(2) above 99 and rsi(2) below 45

dwiggains
441 posts
msg #73035
Ignore dwiggains
3/23/2009 6:30:53 PM

Hi
Try this

Fetcher[
RSI(2) 5 days ago > 99
and RSI (2) < 45
and close > 1 and volume > 900,000
]



This will get you 5 days ago

Hope it helps

See ya
David

TheRumpledOne
6,407 posts
msg #73037
Ignore TheRumpledOne
modified
3/23/2009 8:55:12 PM

Fetcher[
set{rsicount, count(rsi(2) 2 days ago above 99, 4) }
rsicount > 0
and RSI (2) < 45
and close > 1 and volume > 900,000

and add column rsicount
and add column RSI (2)

sort column 5 descending

]




chetron
2,817 posts
msg #73038
Ignore chetron
modified
3/23/2009 9:34:38 PM

oops, i'm getting slower = )

but i was getting some 1 day agoers until i......


Fetcher[

set{rsicount,count(rsi(2) above 99,3)}

rsicount 2 day ago > 0.5
rsicount 1 day ago < .5
RSI(2) < 45
close > 1
volume > 900,000

add column RSI(2)

sort column 5 descending

]



mystiq
650 posts
msg #74631
Ignore mystiq
5/21/2009 7:32:12 AM

--->CHETRON::
/* rsi(2) power scan */
/* WITH CHETRONISMS */
/* ADDED VOLUME THING */
/* SUPER TIGHT LONGS */
/* VARME REPRESENTS HOW MANY DAYS RSI(2) HAS BEEN ABOVE 98 IN THE LAST 34 DAYS */ ---->can this strategy identify TOPS also...?like the reverse from what is stated...? (-.-)


chetron
2,817 posts
msg #74638
Ignore chetron
5/21/2009 10:41:13 AM

HOW DOES THIS LOOK................


Fetcher[




/* rsi(2) power scan */
/* WITH SMSINORTEHC */
/* ADDED VOLUME THING */
/* SUPER TIGHT SHORTS*/
/* VARME REPRESENTS HOW MANY DAYS RSI(2) HAS BEEN ABOVE 98 IN THE LAST 34 DAYS */

set{rsi_MUD,days(rsi(2) above 2,100)}
set{rsi_run,days(rsi(2) BELOW 98,100)}
SET{VARME,COUNT(RSI_RUN ABOVE .5,34)}
ADD COLUMN VARME

SET{VAR1,COUNT(RSI_MUD CROSSED BELOW .5,1)}
SET{VAR2,COUNT(RSI_RUN CROSSED BELOW .5,1)}
SET{VTRIGGER,VAR1 + VAR2}
DRAW RSI_RUN ON PLOT RSI_MUD

RSI_RUN ABOVE .5
RSI_RUN 1 DAY AGO BELOW .5

DO NOT DRAW VTRIGGER
stock is optionable
average volume(30) above 750000

SET{VAR51,AVGVOL(100) * 2}
SET{TRIGGER,COUNT(VOLUME ABOVE VAR51,1)}
SET{VAR52,VOLUME}

DRAW TRIGGER
DRAW AVGVOL(100)
VOLUME ABOVE VAR51
DO NOT DRAW VAR51

CLOSE ABOVE .1

add column rsi(2)
add column rsi(2) 1 day ago {rsi2 -1}
add column rsi(2) 2 days ago {rsi2 -2}
add column rsi(2) 3 days ago {rsi2 -3}
add column rsi(2) 4 days ago {rsi2 -4}
add column rsi(2) 5 days ago {rsi2 -5}
add column rsi(2) 6 days ago {rsi2 -6}
add column rsi(2) 7 days ago {rsi2 -7}
add column rsi(2) 8 days ago {rsi2 -8}
add column rsi(2) 9 days ago {rsi2 -9}
add column rsi(2) 10 days ago {rsi2 -10}
add column rsi(2) 11 days ago {rsi2 -11}
add column rsi(2) 12 days ago {rsi2 -12}
add column rsi(2) 13 days ago {rsi2 -13}
add column rsi(2) 14 days ago {rsi2 -14}
add column rsi(2) 15 days ago {rsi2 -15}
add column rsi(2) 16 days ago {rsi2 -16}
add column rsi(2) 17 days ago {rsi2 -17}

set{sm%, weekly atr(8)/ weekly close(8)}

add column sm%

SORT COLUMN 5 DESCENDING


]



StockFetcher Forums · Filter Exchange · big incredible filter for you called rsi(2) power scan<< 1 2 3 >>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.