StockFetcher Forums · Filter Exchange · ANOTHER MACD FILTER....<< 1 2 3 4 >>Post Follow-up
chetron
2,817 posts
msg #56662
Ignore chetron
11/11/2007 9:25:15 AM

i haven't gotten my mind straight on the "warm pop" filter. this is just a very basic one.

Fetcher[

SET{VAR1,COUNT(MACD HISTOGRAM < 0.00,1)}
SET{VAR4,COUNT(MACD HISTOGRAM > -0.00,1)}
SET{VAR7,COUNT(2 DAY SLOPE OF MACD HISTOGRAM > 0,1)}
SET{VAR8,COUNT(2 DAY SLOPE OF MACD HISTOGRAM < 0,1)}

SET{BUY_LONG,VAR1 * VAR7}
SET{SELL_SHORT,VAR4 * VAR8}

SET{THE_PICKS,BUY_LONG + SELL_SHORT}

ADD COLUMN MACD FAST LINE
ADD COLUMN SEPARATOR
ADD COLUMN SELL_SHORT
ADD COLUMN SEPARATOR
ADD COLUMN BUY_LONG

DRAW BUY_LONG
DRAW SELL_SHORT
DRAW ABS(MACD HISTOGRAM)

THE_PICKS > .5 AND VOLUME > 1000000

DO NOT DRAW THE_PICKS

SORT COLUMN 5 DESCENDING

]



marine2
963 posts
msg #57025
Ignore marine2
11/26/2007 7:26:08 PM

Is it possible you program your filtered results so that the chart shows buy signals as green arrows and sell short signals as red arrows ? This would save you from having to list buy and sell short columns and make it easier on you or anyone knowing when to really look at this stock for buying (going long) or selling (going short) with a filtered stock.

If it's not possible, we know Stock Fetchers programming crew can add that red colored sell arrow in their programming coding for us to use. I trust their expertise.

chetron
2,817 posts
msg #57032
Ignore chetron
11/26/2007 7:50:24 PM

the reason for the buy/sell columns is to allow you to sort on the type of play you are comfortable with.

to my knowledge, you can't display arrows, it would be nice though. the best i can do is draw the plays on the chart, where the red line is sell and green is buy. the color depends on the order of the variables in the draw command.

p.s. ignore the blue line. lol

Fetcher[

SET{VAR1,COUNT(MACD HISTOGRAM < 0.00,1)}
SET{VAR4,COUNT(MACD HISTOGRAM > -0.00,1)}
SET{VAR7,COUNT(2 DAY SLOPE OF MACD HISTOGRAM > 0,1)}
SET{VAR8,COUNT(2 DAY SLOPE OF MACD HISTOGRAM < 0,1)}

SET{BUY_LONG,VAR1 * VAR7}
SET{SELL_SHORT,VAR4 * VAR8}

SET{THE_PICKS,BUY_LONG + SELL_SHORT}
set{color_me_blue,0}
ADD COLUMN MACD FAST LINE
ADD COLUMN SEPARATOR
ADD COLUMN SELL_SHORT
ADD COLUMN SEPARATOR
ADD COLUMN BUY_LONG

DRAW sell_short on plot color_me_blue
draw buy_long on plot color_me_blue

DRAW ABS(MACD HISTOGRAM)

THE_PICKS > .5 AND VOLUME > 1000000

DO NOT DRAW THE_PICKS

SORT COLUMN 5 DESCENDING

]



chetron
2,817 posts
msg #57044
Ignore chetron
11/27/2007 6:47:08 AM

actually, paying attention to the position of the ma(50) to the ma(200) gives more weight to the play. if trig is a 1, buy on green. if the trig is a 0, sellshort on red.

Fetcher[

SET{VAR1,COUNT(MACD HISTOGRAM < 0.00,1)}
SET{VAR4,COUNT(MACD HISTOGRAM > -0.00,1)}
SET{VAR7,COUNT(2 DAY SLOPE OF MACD HISTOGRAM > 0,1)}
SET{VAR8,COUNT(2 DAY SLOPE OF MACD HISTOGRAM < 0,1)}

SET{BUY_LONG,VAR1 * VAR7}
SET{SELL_SHORT,VAR4 * VAR8}

SET{THE_PICKS,BUY_LONG + SELL_SHORT}

set{color_me_blue,0}

set{trig,count(ma(50) > ma(200),1)}

ADD COLUMN MACD FAST LINE
ADD COLUMN SEPARATOR
ADD COLUMN SELL_SHORT
ADD COLUMN SEPARATOR
ADD COLUMN BUY_LONG
add column trig

DRAW sell_short on plot color_me_blue
draw buy_long on plot color_me_blue
draw trig

DRAW ABS(MACD HISTOGRAM)

THE_PICKS > .5 AND VOLUME > 1000000

DO NOT DRAW THE_PICKS

SORT COLUMN 5 DESCENDING

]



marine2
963 posts
msg #57053
Ignore marine2
11/27/2007 2:02:35 PM

Thank you Chetron for your input on when to buy and sell. Have a great day!

chetron
2,817 posts
msg #63196
Ignore chetron
6/1/2008 8:42:11 AM

or maybe....

thanx tro, wsg.


Fetcher[

/* tachikawa */

set{var21,count(macd(4,8) histogram 1 day ago < macd histogram(4,8),1)}
set{mhisp,days(var21 < .5,100)}
set{var11,count(macd(4,8) histogram 1 day ago > macd histogram(4,8),1)}
set{mhisn,days(var11 < .5,100)}

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}

add column hstxhst
add column mhisp
add column mhisn
add column rsi(2)

draw mhisp
draw mhisn on plot mhisp
DRAW HSTXHST
Draw DMA(28,-14)

hstxhst < -4.5
mhisp > 4.5
high > high 1 day ago
low < low 1 day ago
open < close
VOLUME > 100000
CLOSE between .3 and 300

]



chetron
2,817 posts
msg #63199
Ignore chetron
6/1/2008 9:43:45 AM

or this.....


thanx again


Fetcher[

set{var21,count(macd(4,8) histogram 1 day ago < macd histogram(4,8),1)}
set{mhisp,days(var21 < .5,100)}
set{var11,count(macd(4,8) histogram 1 day ago > macd histogram(4,8),1)}
set{mhisn,days(var11 < .5,100)}

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{trigger,mhisn + mhisp}

add column hstxhst
add column mhisp
add column mhisn
add column rsi(2)

draw mhisp
draw mhisn on plot mhisp
DRAW HSTXHST
Draw DMA(28,-14)

hstxhst > 0.5
trigger < 1.5 last 3 day
trigger > .5 last 3 day

VOLUME > 1000000
CLOSE between .3 and 300

]



chetron
2,817 posts
msg #63510
Ignore chetron
6/9/2008 1:17:14 PM

THANX




chetron
2,817 posts
msg #63684
Ignore chetron
6/14/2008 8:09:50 PM

down and dirty pullback dredger.....

Fetcher[

high above ema(100)
open 1 day ago above close 1 day ago
close above .3
macd(4,8) fast line above 0
macd(4,8) slow line above 0
volume above 10000

]











chetron
2,817 posts
msg #64435
Ignore chetron
modified
6/28/2008 10:53:18 AM

CANADIEN MALLARD PATTERN......


Fetcher[



/* TACHIKAWA */
/* LOOK FOR MACD HISTOGRAMS THAT LOOK LIKE A DUCK */
/* FLYING WESTWARDLY */
/* BULLISH */

set{var1,macd(4,8) histogram 1 day ago}
set{var2,var1 * 1.21}
SET{VMACDD,MACD(4,8) histogram}
SET{VAR3,COUNT(HIGH ABOVE LOWER BOLLINGER(20),1)}
SET{VAR4,COUNT(LOW BELOW LOWER BOLLINGER(20),1)}
SET{VBBPIERCE,VAR3 * VAR4}

ADD COLUMN VBBPIERCE

DRAW VMACDD LINE AT 0
DRAW RSI(2) LINE AT 0
DRAW RSI(2) LINE AT 100
DRAW WILLIAMS %R(2) LINE AT -0
DRAW WILLIAMS %R(2) LINE AT -100

MACD(4,8) HISTOGRAM < 0
MACD(4,8) HISTOGRAM > var2

RSI(2) CROSSED ABOVE 40
CLOSE ABOVE .3
VOLUME ABOVE 100000

DO NOT DRAW VAR2
CHART-TIME 22 DAY

]






BEARISH CANADIEN MALLARD PATTERN


Fetcher[

/* TACHIKAWA */
/* LOOK FOR MACD HISTOGRAMS THAT LOOK LIKE A DUCK */
/* FLYING WESTWARDLY UPSIDE DOWN */
/* BEARISH */

set{var1,macd(4,8) histogram 1 day ago}
set{var2,var1 * 1.21}
SET{VMACDD,MACD(4,8) histogram}
SET{VAR3,COUNT(HIGH ABOVE UPPER BOLLINGER(20),1)}
SET{VAR4,COUNT(LOW BELOW UPPER BOLLINGER(20),1)}
SET{VBBPIERCE,VAR3 * VAR4}

ADD COLUMN VBBPIERCE


DRAW VMACDD LINE AT 0
DRAW RSI(2) LINE AT 0
DRAW RSI(2) LINE AT 100
DRAW WILLIAMS %R(2) LINE AT -0
DRAW WILLIAMS %R(2) LINE AT -100

MACD(4,8) HISTOGRAM > 0
MACD(4,8) HISTOGRAM < var2

RSI(2) CROSSED BELOW 60

CLOSE ABOVE .3
VOLUME ABOVE 100000

DO NOT DRAW VAR2
CHART-TIME 22 DAY

]



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