StockFetcher Forums · Filter Exchange · ANOTHER SITE FILTER......<< 1 2 >>Post Follow-up
chetron
2,817 posts
msg #79116
Ignore chetron
modified
9/12/2009 11:44:26 AM

BASED ON THIS SITE




Fetcher[
SET{VAR1,COUNT(CLOSE ABOVE OPEN,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}

SET{VAR11,COUNT(CLOSE BELOW OPEN,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}


DRAW IMPSELLING ON PLOT IMPBUYING

CLOSE ABOVE .5
VOLUME ABOVE 100000


CHART-TIME 6 MONTH
]



MAYBE BETTER.....


Fetcher[


SET{VARA,CLOSE 1 DAY AGO}

SET{VAR1,COUNT(CLOSE ABOVE VARA,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}

SET{VAR11,COUNT(CLOSE BELOW VARA,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}

SET{VAR2,COUNT(IMPBUYING ABOVE .5,100)}
SET{VAR3,COUNT(IMPSELLING ABOVE .5,100)}
SET{IMPBIAS,VAR2 - VAR3}

DRAW IMPBIAS

DRAW IMPSELLING ON PLOT IMPBUYING

CLOSE ABOVE .5
VOLUME ABOVE 100000


CHART-TIME 6 MONTH

]




WORK IN PROGRESS....

Fetcher[




SET{VARA,CLOSE 1 DAY AGO}

SET{VAR1,COUNT(CLOSE ABOVE VARA,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}

SET{VAR11,COUNT(CLOSE BELOW VARA,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}

SET{VAR2,COUNT(IMPBUYING ABOVE .5,100)}
SET{VAR3,COUNT(IMPSELLING ABOVE .5,100)}
SET{IMPBIAS,VAR2 - VAR3}
SET{VAR4,IMPSELLING + IMPBUYING}

DRAW IMPBIAS

DRAW IMPSELLING ON PLOT IMPBUYING

VAR4 ABOVE .5
DO NOT DRAW VAR4
CLOSE ABOVE .5
VOLUME ABOVE 100000


CHART-TIME 6 MONTH

]



WITH A MACD.....


Fetcher[
SET{VAR1,COUNT(CLOSE ABOVE OPEN,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}
SET{VAR11,COUNT(CLOSE BELOW OPEN,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}

SET{VPLAYS,IMPSELLING + IMPBUYING}

DRAW IMPSELLING ON PLOT IMPBUYING
DRAW MACD

CLOSE ABOVE .5
VOLUME ABOVE 100000
VPLAYS 1 DAY AGO ABOVE .5
VPLAYS BELOW .5
DO NOT DRAW VPLAYS

CHART-TIME 6 MONTH
]





MACD CROSSOVER DURING IMPULSE ACTIONS....

Fetcher[

SET{VAR1,COUNT(CLOSE ABOVE OPEN,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}
SET{VAR11,COUNT(CLOSE BELOW OPEN,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}
SET{VPLAYS,IMPSELLING + IMPBUYING}

SET{VAR2,COUNT(MACD(4,8) FAST LINE CROSSED ABOVE MACD(4,8) SLOW LINE,1)}
SET{VAR12,COUNT(MACD(4,8) FAST LINE CROSSED BELOW MACD(4,8) SLOW LINE,1)}
SET{VTRIG,VAR2 + VAR12}

DRAW IMPSELLING ON PLOT IMPBUYING

VTRIG ABOVE .5
CLOSE ABOVE .5
VOLUME ABOVE 100000
VPLAYS ABOVE .5
]



AFTER THE FACT.....


Fetcher[

/* TACHIKAWA 3 */
SET{VAR1,COUNT(CLOSE ABOVE OPEN,4)}
SET{IMPBUYING,COUNT(VAR1 ABOVE 3.5,1)}

SET{VAR11,COUNT(CLOSE BELOW OPEN,4)}
SET{IMPSELLING,COUNT(VAR11 ABOVE 3.5,1)}

SET{VPLAYS,IMPSELLING + IMPBUYING}


DRAW IMPSELLING ON PLOT IMPBUYING

VPLAYS CROSSED BELOW .5
CLOSE ABOVE .5
VOLUME ABOVE 100000
VOLUME ABOVE VOLUME 1 DAY AGO

DO NOT DRAW VPLAYS
DO NOT DRAW VPLAYS LINE AT .5
]



chetron
2,817 posts
msg #80600
Ignore chetron
modified
10/4/2009 11:25:08 AM

mystiq
- Ignore mystiq 10/4/2009 10:47:40 AM

BASED ON THIS SITE

Formula for improved On Balance Volume

Cumulative total of (volume * ((high-open) / (high-low))) -

Cumulative total of (volume * ((open-low) / (high-low)))

>>can anyone build this indicator? (-.-)

************************
MAYBLE.....
OOPS...
OOPS AGAIN TRY THE 2ND ONE....



Fetcher[
SET{VAR1,HIGH - OPEN}
SET{VAR2,HIGH - LOW}
SET{VAR3A,VAR1 / VAR2}
SET{VAR3,VAR3A * OBV}

SET{VAR4,OPEN - LOW}
SET{VAR5,VAR4 / VAR2}
SET{VAR6,VAR5 * OBV}

SET{NAIOBV,VAR3 - VAR6}


DRAW NAIOBV

VOLUME ABOVE 100000
CLOSE ABOVE .1

]




BETTERER.........


Fetcher[

SET{VAR1A,HIGH - OPEN}
SET{VAR1,SUM(VAR1A,10)}

SET{VAR2A,HIGH - LOW}
SET{VAR2,SUM(VAR2A,10)}


SET{VAR3A,SUM(VOLUME,10)}
SET{VAR3B,VAR1 / VAR2}
SET{VAR3,VAR3B * VAR3A}

SET{VAR4A,OPEN - LOW}
SET{VAR4,SUM(VAR4A,10)}

SET{VAR5,VAR4 / VAR2}
SET{VAR6,VAR5 * VAR3A}

SET{NAIOBV,VAR3 - VAR6}


DRAW NAIOBV
DRAW OBV ON PLOT NAIOBV

VOLUME ABOVE 100000
CLOSE ABOVE .1

]



chetron
2,817 posts
msg #83699
Ignore chetron
modified
12/1/2009 7:57:28 PM

bollinger W16....



Fetcher[
set{var1a,close 1 day ago}
set{var1b,close 2 day ago}
set{var1c,close 3 day ago}
set{var1d,close 4 day ago}

set{var1,count(close above var1a,1) + count(close above var1b,1)}
set{var2,count(close above var1c,1) + count(close above var1d,1)}
set{var3,count(var1c below var1d,1) + count(var1a below var1b,1)}
set{var4,count(var1a above var1c,1) + count(var1a above var1d,1)}
set{var5,count(var1b above var1c,1) + count(var1b above var1d,1)}

set{var7,var1 + var2}
set{var8,var7 + var3}
set{var9,var8 + var4}
set{var10,var9 + var5}

add column var10

draw var10

close above .1
volume above 1000000

sort column 5 descending

]



Kevin_in_GA
4,599 posts
msg #83710
Ignore Kevin_in_GA
12/1/2009 10:48:47 PM

Chet:

Fromj looking at the Bollinger W and M patterns, I got the impression that they were not short term (they formed over a 30-40 trading periods). If you look at some other links there, one thing you will see is a % completion for certain patterns, and a target based on the pattern completion. Leads me to believe these are more like cup-and-handles than "three black crows", if you know what I mean.

chetron
2,817 posts
msg #83741
Ignore chetron
12/2/2009 1:59:44 PM

i don't know how you did that, but this is 25 day out, if you know what i mean....


Fetcher[

set{var1a,weekly close 1 day ago}
set{var1b,weekly close 2 day ago}
set{var1c,weekly close 3 day ago}
set{var1d,weekly close 4 day ago}

set{var1,count(weekly close above var1a,1) + count(weekly close above var1b,1)}
set{var2,count(weekly close above var1c,1) + count(weekly close above var1d,1)}
set{var3,count(var1c below var1d,1) + count(var1a below var1b,1)}
set{var4,count(var1a above var1c,1) + count(var1a above var1d,1)}
set{var5,count(var1b above var1c,1) + count(var1b above var1d,1)}

set{var7,var1 + var2}
set{var8,var7 + var3}
set{var9,var8 + var4}
set{var10,var9 + var5}

add column var10

draw var10

close above .1
volume above 1000000
display weekly
sort column 5 descending


]



Kevin_in_GA
4,599 posts
msg #83745
Ignore Kevin_in_GA
modified
12/2/2009 2:33:11 PM

Look here for the timeframes for M and W patterns:

Pattern Engine section



In the case of AAPL on 3/30/2007, they indicate that the duration was 22 days and the % complete was 62.94%. In counting the bars, it looked like 50 or so on the chart. Not sure if these are daily or 4 hr, etc.

chetron
2,817 posts
msg #83747
Ignore chetron
12/2/2009 2:46:42 PM

OH, OK. YA, HE IS USING THE 3 DAY COMBO PRICE ACTION METHEOD, THANX KEV

chetron
2,817 posts
msg #83761
Ignore chetron
modified
12/2/2009 8:00:55 PM

actually, it developt over 60 days, the final 3 bar higher high combo took 22 days.


the following filter, you would be looking for a hihi preceded by a hilo that is preceded by a lohi which is preceded by a lolo.

ebay on 12/2/09 is a good example...


Fetcher[

/* TACHIKAWA */

SET{VHH21,COUNT(HIGH 2 DAY AGO BELOW HIGH 1 DAY AGO,1)}
SET{VHH10,COUNT(HIGH BELOW HIGH 1 DAY AGO,1)}
SET{VHH3,VHH21 * VHH10}

SET{VLL21,COUNT(LOW 2 DAY AGO ABOVE LOW 1 DAY AGO,1)}
SET{VLL10,COUNT(LOW ABOVE LOW 1 DAY AGO,1)}
SET{VLL3,VLL21 * VLL10}

SET{VHH8,COUNT(HIGH 1 DAY AGO ABOVE HIGH 8 DAY HIGH 2 DAY AGO,1)}
SET{VHL8,COUNT(LOW 1 DAY AGO ABOVE LOW 8 DAY LOW 2 DAY AGO,1)}
SET{VLH8,COUNT(HIGH 1 DAY AGO BELOW HIGH 8 DAY HIGH 2 DAY AGO,1)}
SET{VLL8,COUNT(LOW 1 DAY AGO below LOW 8 DAY LOW 2 day ago ,1)}

SET{HIHI,VHH3 * VHH8}
SET{LOHI,VHH3 * VLH8}
SET{HILO,VLL3 * VHL8}
SET{LOLO,VLL3 * VLL8}

CHART-TIME 21 DAY

DRAW LOLO
DRAW LOHI
DRAW HILO
DRAW HIHI
draw bollinger

hihi ABOVE .5

VOLUME ABOVE 1000000

]



chetron
2,817 posts
msg #83762
Ignore chetron
12/2/2009 8:12:32 PM

but as i review the aapl concept, i say.....................

mr. bollinger is holding back....


Fetcher[

/* TACHIKAWA */
/* bolllinger is a hold back */

SET{VHH21,COUNT(HIGH 2 DAY AGO BELOW HIGH 1 DAY AGO,1)}
SET{VHH10,COUNT(HIGH BELOW HIGH 1 DAY AGO,1)}
SET{VHH3,VHH21 * VHH10}

SET{VLL21,COUNT(LOW 2 DAY AGO ABOVE LOW 1 DAY AGO,1)}
SET{VLL10,COUNT(LOW ABOVE LOW 1 DAY AGO,1)}
SET{VLL3,VLL21 * VLL10}

SET{VHH8,COUNT(HIGH 1 DAY AGO ABOVE HIGH 8 DAY HIGH 2 DAY AGO,1)}
SET{VHL8,COUNT(LOW 1 DAY AGO ABOVE LOW 8 DAY LOW 2 DAY AGO,1)}
SET{VLH8,COUNT(HIGH 1 DAY AGO BELOW HIGH 8 DAY HIGH 2 DAY AGO,1)}
SET{VLL8,COUNT(LOW 1 DAY AGO below LOW 8 DAY LOW 2 day ago ,1)}

SET{HIHI,VHH3 * VHH8}
SET{LOHI,VHH3 * VLH8}
SET{HILO,VLL3 * VHL8}
SET{LOLO,VLL3 * VLL8}

DRAW LOLO
DRAW LOHI
DRAW HILO
DRAW HIHI
draw bollinger

lolo ABOVE .5
Bollinger Width Oscillator(20,2) reached new 21 day low
Bollinger Width Oscillator(20,2) below 0
VOLUME ABOVE 1000000
]



chetron
2,817 posts
msg #90456
Ignore chetron
modified
3/27/2010 10:18:30 AM

RANDOM WALK INDEX.....



OOOPS, SORRY ABOUT THAT...


Fetcher[

set{vsq8,2.838}
set{vatr8,atr(8) * vsq8}

SET{VRWL1,HIGH 8 DAY HIGH - LOW}
SET{VRWH1,HIGH - LOW 8 DAY LOW}

SET{VRWH,VRWH1 / vATR8}
SET{VRWL,VRWL1 / vATR8}

set{vbuy,count(vrwh crossed above vrwl,1)}
set{vshort,count(vrwl crossed above vrwh,1)}

draw vshort
DRAW vbuy
draw vrwh line at 1
DRAW VRWL ON PLOT VRWH

add column vbuy
add column vshort

close above .1
volume above 1000000



]



THEIR THOUGHTS.....

Fetcher[

set{vsq8,2.838}
set{vatr8,atr(8) * vsq8}

SET{VRWL1,HIGH 8 DAY HIGH - LOW}
SET{VRWH1,HIGH - LOW 8 DAY LOW}

SET{VRWH,VRWH1 / vATR8}
SET{VRWL,VRWL1 / vATR8}

set{vbuy,count(vrwh crossed above 1,1)}
set{vshort,count(vrwl crossed above 1,1)}
set{vplays,vbuy + vshort}

draw vshort on plot vbuy
draw vrwh line at 1
DRAW VRWL ON PLOT VRWH

add column vbuy
add column vshort

vplays above .5
do not draw vplays
close above .1
volume above 1000000



]




MY THOUGHTS...


Fetcher[
set{vsq8,2.838}
set{vatr8,atr(8) * vsq8}

SET{VRWL1,HIGH 8 DAY HIGH - LOW}
SET{VRWH1,HIGH - LOW 8 DAY LOW}

SET{VRWH,VRWH1 / vATR8}
SET{VRWL,VRWL1 / vATR8}

set{vbuy,count(vrwh crossed above vrwl,1)}
set{vshort,count(vrwl crossed above vrwh,1)}
set{vplays,vbuy + vshort}

draw vshort
DRAW vbuy
draw vrwh line at 1
DRAW VRWL ON PLOT VRWH

add column vbuy
add column vshort

vplays above .5
do not draw vplays
close above .1
volume above 1000000



]




AND MAYBE EVEN.....

Fetcher[

set{vsq8,2.838}
set{vatr8,atr(8) * vsq8}

SET{VRWL1,HIGH 8 DAY HIGH - LOW}
SET{VRWH1,HIGH - LOW 8 DAY LOW}

SET{VRWH,VRWH1 / vATR8}
SET{VRWL,VRWL1 / vATR8}

set{VUPTREND,count(vrwh above vrwl,1)}
set{VDNTREND,count(vrwl above vrwh,1)}
SET{VPLAYS,VDNTREND + VUPTREND}

draw VDNTREND
DRAW VUPTREND
draw vrwh line at 1
DRAW VRWL ON PLOT VRWH

add column VUPTREND
add column VDNTREND

VPLAYS ABOVE .5
DO NOT DRAW VPLAYS
close above .1
volume above 1000000



]



StockFetcher Forums · Filter Exchange · ANOTHER SITE FILTER......<< 1 2 >>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.