StockFetcher Forums · Filter Exchange · CHART TOPPER FINDER<< >>Post Follow-up
TheRumpledOne
6,407 posts
msg #56132
Ignore TheRumpledOne
modified
10/29/2007 1:10:36 AM

Fetcher[
/* CHART TOPPER FINDER */

set{A0, count(close equal close 5 day high, 1)}
set{A1, count(close equal close 13 day high, 1)}
set{A2, count(close equal close 26 day high, 1)}
set{A3, count(close equal close 50 day high, 1)}
set{A4, count(close equal close 200 day high, 1)}


set{rr1,5 * a0}
set{rr2,8 * a1} /* 8 = 13 - 5 */
set{rr3,13 * a2} /* 13 = 26 - 13 */
set{rr4,24 * a3} /* 24 = 50 - 26 */
set{rr5,150 * a4} /* 150 = 200 - 50 */
set{rra,rr1 + rr2}
set{rrb,rra + rr3}
set{rrc,rrb + rr4}
set{rr,rrc + rr5}

rr above 0

and add column rr

and add column close 5 day high
and add column close 13 day high
and add column close 26 day high
and add column close 50 day high
and add column close 200 day high

sort column 5 descending
]



Column rr tells you if it is a 5, 13, 26, 50 or 200 day highest close.

Note: NO INDICATORS WERE HARMED TO CREATE THIS FILTER.

Pure price action!!


TheRumpledOne
6,407 posts
msg #56135
Ignore TheRumpledOne
10/29/2007 1:32:02 AM

Fetcher[
/* CHART TOPPER FINDER - 50 day or 200 day highest close */

set{A0, count(close equal close 5 day high, 1)}
set{A1, count(close equal close 13 day high, 1)}
set{A2, count(close equal close 26 day high, 1)}
set{A3, count(close equal close 50 day high, 1)}
set{A4, count(close equal close 200 day high, 1)}


set{rr1,5 * a0}
set{rr2,8 * a1} /* 8 = 13 - 5 */
set{rr3,13 * a2} /* 13 = 26 - 13 */
set{rr4,24 * a3} /* 24 = 50 - 26 */
set{rr5,150 * a4} /* 150 = 200 - 50 */
set{rra,rr1 + rr2}
set{rrb,rra + rr3}
set{rrc,rrb + rr4}
set{rr,rrc + rr5}

rr above 49

and add column rr

and add column close 5 day high
and add column close 13 day high
and add column close 26 day high
and add column close 50 day high
and add column close 200 day high

sort column 5 descending
]



Note: NO INDICATORS WERE HARMED TO CREATE THIS FILTER.

Pure price action!!


curmudgeon
103 posts
msg #56149
Ignore curmudgeon
10/29/2007 3:55:54 PM

Killer!

Can you splain the math...not following too well.

/* Sung to "Another Brick In The Wall (Part II)" Pink Floyd */

We don't need no indicators.
We don't need no thought control.
No divination of the future
Gurus leave them peeps alone
Hey gurus, leave them peeps alone!

All in all it's just another bar on the chart
All in all you're just another fish in the sea.

TheRumpledOne
6,407 posts
msg #56154
Ignore TheRumpledOne
10/29/2007 4:39:49 PM

"Can you splain the math...not following too well. "

What's there to explain?

Column rr tells you what high was reached.



curmudgeon
103 posts
msg #56388
Ignore curmudgeon
11/3/2007 1:07:49 PM

This is interesting. Needs some tweaking.

Fetcher[
/*TROrox */

/* Moving Averages */

set{MA5, EMA(5)}
set{MA8, EMA(8)}
set{MA13, EMA(13)}
set{MA50, EMA(50)}
set{MA200, EMA(200)}

/* Maximum Excursion */

set{MaxEx1, MA5 - MA8}
set{MaxEx2, MA8 - MA13}
set{MaxEx3, MA13 - MA50}
set{MaxEx4, MA50 - MA200}

/* TRO Topper */

set{A0, count(MaxEx1 has been increasing for the last 1 days, 1)}
set{A1, count(MaxEx2 has been increasing for the last 1 days, 1)}
set{A2, count(MaxEx3 has been increasing for the last 1 days, 1)}
set{A3, count(MaxEx4 has been increasing for the last 1 days, 1)}

set{RR1,25 * A0}
set{RR2,25 * A1}
set{RR3,25 * A2}
set{RR4,25 * A3}
set{RRA,RR1 + RR2}
set{RRB,RRA + RR3}
set{TROrox,RRB + RR4}

/* Sort - Beady-Eyed, Greedy Bastard Filters */

show stocks where TROrox is above -1
and Average Volume(21) is above 1000000
and close is between .01 and 200

and MA5 is below MA8
and MA8 is above MA13
and MA13 is above MA50
and MA50 is above MA200

and market is not OTCBB
and chart-length is 3 months
and sort column 7 ascending

draw EMA(5) on plot price
draw EMA(8) on plot price
draw EMA(13) on plot price
draw EMA(50) on plot price
draw EMA(200) on plot price
do not draw MA5
do not draw MA8
do not draw MA13
do not draw MA50
do not draw MA200
draw RSI(2)
]



TheRumpledOne
6,407 posts
msg #56392
Ignore TheRumpledOne
11/3/2007 1:20:02 PM

Fetcher[
/* curmudgeon */

/* Moving Averages */

set{MA5, EMA(5)}
set{MA8, EMA(8)}
set{MA13, EMA(13)}
set{MA50, EMA(50)}
set{MA200, EMA(200)}

/* Maximum Excursion */

set{MaxEx1, MA5 - MA8}
set{MaxEx2, MA8 - MA13}
set{MaxEx3, MA13 - MA50}
set{MaxEx4, MA50 - MA200}

/* TRO Topper */

set{A0, count(MaxEx1 has been increasing for the last 1 days, 1)}
set{A1, count(MaxEx2 has been increasing for the last 1 days, 1)}
set{A2, count(MaxEx3 has been increasing for the last 1 days, 1)}
set{A3, count(MaxEx4 has been increasing for the last 1 days, 1)}

set{RR1,25 * A0}
set{RR2,25 * A1}
set{RR3,25 * A2}
set{RR4,25 * A3}
set{RRA,RR1 + RR2}
set{RRB,RRA + RR3}
set{curmudgeon ,RRB + RR4}


ADD COLUMN curmudgeon
SORT COLUMN 5 DESCENDING

/* Sort - Beady-Eyed, Greedy Bastard Filters */

show stocks where curmudgeon is above 24
and Average Volume(21) is above 1000000
and close is between .01 and 200

and MA5 is below MA8
and MA8 is above MA13
and MA13 is above MA50
and MA50 is above MA200

and market is not OTCBB
and chart-length is 3 months
and sort column 7 ascending

draw EMA(5) on plot price
draw EMA(8) on plot price
draw EMA(13) on plot price
draw EMA(50) on plot price
draw EMA(200) on plot price
do not draw MA5
do not draw MA8
do not draw MA13
do not draw MA50
do not draw MA200
draw RSI(2)
]



It's your filter so it should be named after you...LOL!

I made a slight modification.

TheRumpledOne
6,407 posts
msg #56395
Ignore TheRumpledOne
modified
11/3/2007 1:47:22 PM

Fetcher[
/* TOP FINDER STATISTICS - How many times has it hit the top */

set{HIGH5, count(close equal close 5 day HIGH, 100)}
set{HIGH13, count(close equal close 13 day HIGH, 100)}
set{HIGH26, count(close equal close 26 day HIGH, 100)}
set{HIGH50, count(close equal close 50 day HIGH, 100)}
set{HIGH200, count(close equal close 200 day HIGH, 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 */

close equal close 5 day HIGH
close above 1
volume above 1000000

and add column HIGH5
and add column HIGH13
and add column HIGH26
and add column HIGH50
and add column HIGH200

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

sort column 9 descending
]



Stocks hitting the 5 day high.

curmudgeon
103 posts
msg #56402
Ignore curmudgeon
11/3/2007 2:54:30 PM

Fetcher[

/* Max Excursion */

/* Moving Averages */

set{MA1, EMA(3)}
set{MA2, EMA(6)}
set{MA3, EMA(13)}
set{MA4, EMA(26)}
set{MA5, EMA(39)}

/* Maximum Excursion */

set{MaxEx1, MA1 - MA2}
set{MaxEx2, MA2 - MA3}
set{MaxEx3, MA3 - MA4}
set{MaxEx4, MA4 - MA5}

/* TRO Topper */

set{A0, count(MaxEx1 has been increasing for the last 1 days, 1)}
set{A1, count(MaxEx2 has been increasing for the last 1 days, 1)}
set{A2, count(MaxEx3 has been increasing for the last 1 days, 1)}
set{A3, count(MaxEx4 has been increasing for the last 1 days, 1)}

set{RR1,25 * A0}
set{RR2,25 * A1}
set{RR3,25 * A2}
set{RR4,25 * A3}
set{RRA,RR1 + RR2}
set{RRB,RRA + RR3}
set{MaxExcursion ,RRB + RR4}
add column MaxExcursion

/* Sort - Beady-Eyed, Greedy Bastard Filters */

show stocks where MaxExcursion is above -1
and Average Volume(21) is above 10000000
and close is between .01 and 200

and MA1 is above MA5
and MA2 is above MA3
and MA3 is above MA4
and MA4 is above MA5

and market is not OTCBB
and chart-length is 3 months
and sort column 5 ascending

draw EMA(3) on plot price
draw EMA(6) on plot price
draw EMA(13) on plot price
draw EMA(26) on plot price
draw EMA(39) on plot price
do not draw MA1
do not draw MA2
do not draw MA3
do not draw MA4
do not draw MA5
draw RSI(2)
]



Not a good time to go long when score is 100.

StockFetcher Forums · Filter Exchange · CHART TOPPER FINDER<< >>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.