StockFetcher Forums · Filter Exchange · ANOTHER RSI(2) FILTER...<< 1 2 3 >>Post Follow-up
chetron
2,817 posts
msg #65454
Ignore chetron
modified
7/26/2008 9:31:58 AM

SOMETIMES BILLY IS AN ALARMIST...

OOPS, FORGOT TO SET PICKS CORRECTLY.
LOOKING FOR BUYING CLOSE, FOR A POP NEXT DAY, IF NOT NEXT DAY CLOSE. .

Fetcher[

/* TACHIKAWA */
/* THE ALARMIST */

SET{V99,COUNT(WILLIAMS %R(2) BELOW -99,1)}
SET{V1,COUNT(WILLIAMS %R(2) ABOVE -1,1)}

SET{VSS,COUNT(RSI(2) BELOW 41,1)}
SET{VBL,COUNT(RSI(2) ABOVE 59,1)}

SET{SPOWER,VSS * V1}
SET{LPOWER,VBL * V99}
SET{PICKS,SPOWER + LPOWER}

ADD COLUMN SPOWER
ADD COLUMN LPOWER

ADD COLUMN V99
ADD COLUMN V1

DRAW V1 ON PLOT V99

CLOSE ABOVE .3
VOLUME ABOVE 20000
PICKS ABOVE .5

DO NOT DRAW PICKS

]



chetron
2,817 posts
msg #65464
Ignore chetron
modified
7/26/2008 4:51:13 PM

AND SOMETIMES BILLY IS A CONSPIRIST...


BUY AT THE CLOSE SELL BY NEXT DAY CLOSE.

Fetcher[

/* TACHIKAWA */
/* THE CONSPIRIST */

SET{V99,COUNT(WILLIAMS %R(2) BELOW -85,1)}
SET{V1,COUNT(WILLIAMS %R(2) ABOVE -15,1)}

SET{VSS,COUNT(RSI(2) BELOW 1,1)}
SET{VBL,COUNT(RSI(2) ABOVE 99,1)}

SET{VWU,COUNT(WILLIAMS %R(2) 1 DAY AGO BELOW WILLIAMS %R(2),1)}
SET{VWD,COUNT(WILLIAMS %R(2) 1 DAY AGO ABOVE WILLIAMS %R(2),1)}

SET{LPOWER1,VSS * V99}
SET{SPOWER1,VBL * V1}

SET{LPOWER,LPOWER1 * VWU}
SET{SPOWER,SPOWER1 * VWD}

SET{PICKS,SPOWER + LPOWER}

ADD COLUMN SPOWER
ADD COLUMN LPOWER

ADD COLUMN V99
ADD COLUMN V1

DRAW V1 ON PLOT V99

CLOSE ABOVE .3
VOLUME ABOVE 20000
PICKS ABOVE .5

DO NOT DRAW PICKS


]



WALLSTREETGENIUS
983 posts
msg #65466
Ignore WALLSTREETGENIUS
modified
7/26/2008 6:42:58 PM

....AND SOMETIMES "BILLY" JUST TAKES OFF TOO DAMN FAST!

((( RIGGS POP & DROP FILTER )))

**** WATCH THE ZERO "0" LINES ****

Fetcher[Draw COG(5,3)
Williams %R(2) 1-day ago was below -75
Williams %R(2) is above -1
Draw Williams %R(2) line at 0
Draw Williams %R(20) line at 0
Draw Williams %R(20) line at -75
Draw Volatility_Ratio line at 0.5
Draw weekly RSI(2) line at 100
Draw FI(2) line at 0

Draw Bollinger bands(50,.20)
Draw Bollinger Bands(10,.10)
Draw 3-day slope of Bollinger bands(50,.20)
Draw parabolic Sar
Draw Linear Regression Indicator(20)
Draw Bollinger bands(10)

Draw Bearpower on plot Bullpower
Draw Bullpower line at 0
Draw MACD(4,8)
Draw VMACDD line at 0

volume is above 50000
sort column 9 descending
chart-time 45-days
close is above 1
offset 0

set{true_range, average true range(1)}
set{ema_true_range, CEMA(average true range(1), 14)}
set{volatility_ratio, true_range / ema_true_range}
set{volatility_ratio_count, count(volatility_ratio is above 2.0, 100)}

Set{Bullpower, high minus ema(13)}
Set{Bearpower, low minus ema(13)}
set{BLb,days(BullPower is above BullPower 1 day ago,100)}
set{BLa,days(BullPower is below BullPower 1 day ago,100)}
set{BLxBL, BLa - BLb}
set{BRb,days(BearPower is above BearPower 1 day ago,100)}
set{BRa,days(BearPower is below BearPower 1 day ago,100)}
set{BRxBR, BRa - BRb}

SET{VMACDD,MACD(4,8) histogram}
set{mhis,indposition(macd(4,8) histogram,60)}
set{mhist,macd(4,8) histogram}
set{mhisb,days(mhist is above 0, 100)}
set{mhisa,days(mhist is below 0, 100)}
set{hstxhst, mhisa - mhisb}
set{var1,count(macd(4,8) histogram 1 day ago < macd histogram(4,8),1)}
set{mhisp,days(var1 < .5,100)}
set{var11,count(macd(4,8) histogram 1 day ago > macd histogram(4,8),1)}
set{mhisn,days(var11 < .5,100)}

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

ADD COLUMN SEPARATOR
add column sector
add column industry
ADD COLUMN SEPARATOR
add column Williams %R(2)
add column Williams %R(2) 1-day ago(1dayago)
ADD COLUMN SEPARATOR
add column volatility_ratio
add column volatility_ratio 1-day ago(1dayago)
ADD COLUMN SEPARATOR
add column PE
add column EPS
add column ROE
ADD COLUMN SEPARATOR
add column mhisp
add column mhisn
add column hstxhst
ADD COLUMN SEPARATOR
and add column VMACDD
and add column VMACDD 1-day ago(1dayago)
and add column VMACDD 2-days ago(2daysago)
ADD COLUMN SEPARATOR
add column upweek
ADD COLUMN SEPARATOR
]




WALLSTREETGENIUS
983 posts
msg #65487
Ignore WALLSTREETGENIUS
modified
7/27/2008 2:44:47 AM

chetron -

When Avery coded this....

__________________________________________________

Fetcher[set{ upweek, count( weekly close above weekly open, 1) }
Draw weekly RSI(2)
add column upweek
volume is above 100000
]



__________________________________________________


....I noticed it's not from a weekly trend indicator like RSI(2). Can you fix this so that it represents weekly RSI(2) when I see "upweek-1" on my dashboard? There's lot's of instances when you'll have an "upweek-1", but the weekly RSI(2) will be in a downtrend. Know what I mean?...I'm not looking for the obvious..."add column weekly RSI(2)." Again, is it posible to take Avery's "upweek 1 or 0", and have that represent weekly RSI(2)?

Let me know what you think...


- RIGGS -

chetron
2,817 posts
msg #65490
Ignore chetron
7/27/2008 9:26:07 AM

i would think...


Fetcher[

set{ rsiupweek, count( Weekly RSI(2) is above Weekly RSI(2) 1 week ago, 1) }
Draw weekly RSI(2)
add column rsiupweek
volume is above 100000
]



WALLSTREETGENIUS
983 posts
msg #65492
Ignore WALLSTREETGENIUS
7/27/2008 9:36:55 AM

Chet -

I cant begin to tell you how many times "i've" tried this same coding, only to get "0" results! It's wierd...like you, I just added "RSI(2)", but got nothing! Anyway, I knew I came to the right place.

Thanks,


- RIGGS -

TheRumpledOne
6,407 posts
msg #65502
Ignore TheRumpledOne
modified
7/27/2008 1:59:59 PM

....I noticed it's not from a weekly trend indicator like RSI(2). Can you fix this so that it represents weekly RSI(2) when I see "upweek-1" on my dashboard? There's lot's of instances when you'll have an "upweek-1", but the weekly RSI(2) will be in a downtrend. Know what I mean?...I'm not looking for the obvious..."add column weekly RSI(2)." Again, is it posible to take Avery's "upweek 1 or 0", and have that represent weekly RSI(2)?

Let me know what you think...


- RIGGS -
============================================

FIX implies something is BROKEN!

You meant to say MODIFY.

My original code was to indicate if the stock closed up or down for the week... it was price based...simple!

Fetcher[
/* Chetron rsiupweek filter modified by TRO */

set{ rsiupweek, days( Weekly RSI(2) below Weekly RSI(2) 1 week ago, 100) }

Draw weekly RSI(2)

add column rsiupweek
add column sector
add column industry

rsiupweek above 0

average volume(90) is above 1000000

sort column 5 descending

chart-display is weekly
]



This version of Chetron's filter shows how many weeks weekly RSI(2) has been in an uptrend.

Looks like it has been a good month for big drug companies.


WALLSTREETGENIUS
983 posts
msg #65507
Ignore WALLSTREETGENIUS
modified
7/27/2008 3:57:03 PM


Avery said.....

FIX implies something is BROKEN!

You meant to say MODIFY.

My original code was to indicate if the stock closed up or down for the week... it was price based...simple!

================================

Check your ego at the door next time Nancy! Nobody blamed you for anything, I just needed the best coder at this site (chet) to improve upon something that needed to be...that's all. Now, go back to that ever-so-popular game show of your's..."BEGGING 4 VOTES."


RIGGS

chetron
2,817 posts
msg #73046
Ignore chetron
modified
3/24/2009 6:53:34 AM

AND............

Fetcher[

RSI(2) BELOW 50
MACD(4,8) HISTOGRAM ABOVE 0
MACD(4,8) FAST LINE ABOVE 0
ADD COLUMN RSI(2)

CLOSE ABOVE .1
VOLUME ABOVE 1000000

SORT COLUMN 5 ASCENDING
]



FOR SHORTS....

Fetcher[

RSI(2) BELOW 50
MACD(4,8) FAST LINE ABOVE MACD(4,8) SLOW LINE
MACD(4,8) FAST LINE BELOW 0

ADD COLUMN RSI(2)

CLOSE ABOVE .1
VOLUME ABOVE 1000000

SORT COLUMN 5 ASCENDING

]



chetron
2,817 posts
msg #73054
Ignore chetron
3/24/2009 8:44:56 PM

THANX ZACK.....


Fetcher[

DRAW WEEKLY RSI(2) ON PLOT RSI(2)
DRAW WEEKLY WILLIAMS %R(2) ON PLOT WILLIAMS %R(2)
DRAW WEEKLY MACD(4,8) ON PLOT MACD(4,8)

WEEKLY RSI(2) ABOVE 50 LAST 5 DAY
RSI(2) BELOW 50

CLOSE ABOVE .3
VOLUME ABOVE 100000
]



StockFetcher Forums · Filter Exchange · ANOTHER RSI(2) FILTER...<< 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.