StockFetcher Forums · Filter Exchange · JUST WONDERING.....<< 1 2 3 >>Post Follow-up
conyeuchua
83 posts
msg #69445
Ignore conyeuchua
12/1/2008 12:46:41 AM

Hi Chetron,

Firstly, thank you for your contribution and generous gift of time to this forum.

I, too, am WONDERING: Is there an easier way to identify a potential reversal?
For example, can't we just use the StockFetcher's coding example of a bearish shooting star at the end of rising prices?

Fetcher[
/* Code provided by StockFetcher */
set{body_bottom,min(open,close)}
set{body_top,max(open,close)}
set{lshadowsize, body_bottom - low}
set{tshadowsize, high - body_top}
set{tshadowsize2, tshadowsize * 2}
set{body_size, body_top - body_bottom}
show stocks where lshadowsize is less than 0.001
and tshadowsize2 > body_size
and close increasing for the last 3 days
and body_bottom > close 1 day ago
close above 5
]





chetron
2,817 posts
msg #69447
Ignore chetron
modified
12/1/2008 6:59:40 AM

yes, it is easier, but i hate all those stocks that show up without any price action.

i do believe that the position of the parabolic sars, relative to price, does add value to the filtering process.
IE: IF THE PARABOLIC SARS WERE TO BE ABOVE THE BEARISH MORNING STAR IS BETTER FOR A REVERSAL THAN IF IT WERE BENEATH.

though i am not looking for reversals with my "how about" filter on the previous page, but a next day pop.

the entire filter is for "buys"




chetron
2,817 posts
msg #69449
Ignore chetron
12/1/2008 8:55:36 AM

MAYBE SHORT THIS.....

Fetcher[



/* looking for SHORTING at close and COVERING to the next day pop */

SET{VAR1,HIGH + LOW}
SET{VAR2,VAR1 / 2}

SET{TRIP1A,COUNT(OPEN < VAR2,1)}
SET{TRIP1B,COUNT(LOW < PARABOLIC SARS,1)}
SET{TRIP1C,COUNT(RSI(2) > 94,1)}
SET{TRIP1D,TRIP1A * TRIP1B}
SET{TRIP1,TRIP1D * TRIP1C}

SET{TRIP2A,COUNT(CLOSE > VAR2,1)}
SET{TRIP2B,COUNT(HIGH > PARABOLIC SARS,1)}
SET{TRIP2C,COUNT(RSI(2) < 6,1)}
SET{TRIP2D,TRIP2A * TRIP2B}
SET{TRIP2,TRIP2D * TRIP2C}

SET{SHORT_ME,TRIP1 + TRIP2}

SHORT_ME > .5

DRAW PARABOLIC SARS
DO NOT DRAW EMA(100)
DO NOT DRAW SHORT_ME
CHART-TIME 22 DAY

OPEN > CLOSE
OPEN 1 DAY AGO > CLOSE 1 DAY AGO


]



chetron
2,817 posts
msg #69470
Ignore chetron
modified
12/1/2008 6:49:07 PM

you might also enjoy this. this is a td ameritrade stradegydesk REVERSAL candle filter i tried to convert to stockfetcher. i didn't find much use for it, but it is the only one i didn't recognize, offered by them, so some one must value it. maybe it will help some else. enjoy.


Fetcher[
/* downside gap 2 bullish rabbits REVERSAL */

set{var1,high 2 day ago + low 2 day ago}
set{var2,var1 / 2}

set{var5,var2 * 0.015}

set{var6,high 2 day ago - low 2 day ago}
set{var8,high 3 day ago - low 3 day ago}
set{var9,high 4 day ago - low 4 day ago}
set{var10,high 5 day ago - low 5 day ago}
set{var11,high 6 day ago - low 6 day ago}
set{var12,high 7 day ago - low 7 day ago}

set{var14,var9 + var8}
set{var15,var10 + var14}
set{var16,var11 + var15}
set{var17,var12 + var16}
set{var18,var17 / 5}
set{var19,var18 * 0.75}

set{var20,open 2 day ago - close 2 day ago}
set{var21,var6 * 0.5}

set{var22,close 1 day ago - open 1 day ago}

set{var23,high 1 day ago - low 1 day ago}
set{var24,var23 * 0.5}

set{var32,close - open}

set{var33,high - low}
set{var34,var33 * 0.5}

set{var50,cma(var33,6)}
set{var51,var50 * 0.75}



set{var3,count(var2 < ema(10) 2 day ago,1)}
var3 > .5
set{var4,count(var6 > var5,1)}
set{var7,count(var6 > var51,1)}
set{var40,var4 + var7}
var40 > .5
close 2 day ago < open 2 day ago
var20 > var21
close > open
var32 > var34
close 1 day ago < close 2 day ago
close > close 1 day ago
open < open 1 day ago
high > high 1 day ago
low < low 1 day ago
close < close 2 day ago
close 1 day ago > open 1 day ago
var22 > var24

offset 11/21/08





]




COULD BE EASIER....

Fetcher[

SET{VAR2,LOW 1 DAY AGO}
SET{VAR1,COUNT(VAR2 ABOVE HIGH,8)}
ADD COLUMN VAR1
DRAW VAR1

OPEN ABOVE LOW
CLOSE ABOVE LOW
VOLUME ABOVE 100000
VAR1 ABOVE .5
CLOSE BETWEEN 1 AND 5

]



chetron
2,817 posts
msg #70973
Ignore chetron
1/26/2009 10:07:12 PM

GOING UP.......


Fetcher[
OPEN ABOVE HIGH 1 DAY AGO
CLOSE ABOVE OPEN
CLOSE ABOVE 1
VOLUME ABOVE 100000
HIGH BELOW HIGH 5 DAY HIGH
]



chetron
2,817 posts
msg #71645
Ignore chetron
modified
2/22/2009 1:45:24 PM

JUST CRANKIN' HERE.....


Fetcher[

/* TOMM'S BAD MATH VERSION, I LIKE */

/* 8, 21 Period Hull Moving Average Crossover */
set{f1,cwma(close,4)}
set{f2,2 * f1}
set{f3,cwma(close,8)}
set{valfast,f2 - f3}
set{fastavg,cwma(valfast,3)}

set{Vs1,cwma(close,11)}
set{Vs2,2 * Vs1}
set{Vs3,cwma(close,21)}
set{valslow,f2 - f3}
set{slowavg,cwma(valslow,5)}

set{diff,fastavg - slowavg}

draw fastavg on plot price
draw slowavg on plot price
draw diff
draw diff line at 0

williams %r(2) below -79
diff below -0
diff increasing last 2 day
show stocks where the close is above 1
and volume is above 100000
and not otcbb

add column fastavg
add column slowavg
add column diff
]



OR MAYBE.....

Fetcher[

/* TOMM'S BAD MATH VERSION, I LIKE */
/* 8, 21 Period Hull Moving Average Crossover */
set{f1,cwma(close,4)}
set{f2,2 * f1}
set{f3,cwma(close,8)}
set{valfast,f2 - f3}
set{fastavg,cwma(valfast,3)}

set{Vs1,cwma(close,11)}
set{Vs2,2 * Vs1}
set{Vs3,cwma(close,21)}
set{valslow,f2 - f3}
set{slowavg,cwma(valslow,5)}

set{diff,fastavg - slowavg}

draw fastavg on plot price
draw slowavg on plot price
draw diff
draw diff line at 0

2 DAY SLOPE DIFF ABOVE .7

DIFF BELOW -0
show stocks where the close is above 1
and volume is above 100000
and not otcbb

add column fastavg
add column slowavg
add column diff

]



tomm1111
202 posts
msg #71652
Ignore tomm1111
2/22/2009 7:15:01 PM

Chetron,

The second filter yields an interesting mix of stocks. It seems if a day is heavy with 3x and 2x etf's they take off.

chetron
2,817 posts
msg #71653
Ignore chetron
modified
2/22/2009 9:43:11 PM

it does catch your eye. just haven't had time to figure out, or what i am really looking at.

chetron
2,817 posts
msg #72025
Ignore chetron
3/5/2009 7:03:53 AM

HOW ABOUT.....


Fetcher[

RSI(2) BELOW 1
VOLUME BELOW VOLUME 1 DAY AGO
WILLIAMS %R(2) ABOVE WILLIAMS %R(2) 1 DAY AGO
CLOSE ABOVE .1
]



chetron
2,817 posts
msg #76410
Ignore chetron
modified
7/14/2009 9:09:27 AM

HMMM.
MAYBE NOT....


Fetcher[
SET{VAR1,CLOSE 1 DAY AGO}
SET{VAR2,VOLUME 1 DAY AGO}

SET{VAR3,MAX(CLOSE,VAR1)}
SET{VAR4,MIN(CLOSE,VAR1)}
SET{VAR5,VAR4 / VAR3}
SET{VPAC,VAR5 * 100}

SET{VAR6,MAX(VOLUME,VAR2)}
SET{VAR7,MIN(VOLUME,VAR2)}
SET{VAR8,VAR7 / VAR6}
SET{VVAC,VAR8 * 100}



DRAW VVAC ON PLOT VPAC
DRAW WILLIAMS %R(2)

VVAC CROSSED ABOVE VPAC
CLOSE ABOVE .1
VOLUME ABOVE 100000

]



StockFetcher Forums · Filter Exchange · JUST WONDERING.....<< 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.