fotchstecker 304 posts msg #121867 - Ignore fotchstecker |
10/31/2014 3:28:53 PM
How does one screen for the presence of one or more candlesticks types?
So, for example:
close is between 1 and 10
pattern is Bullish Three Inside Up or
pattern is Bullish Homing Pigeon or
pattern is Bullish Harami
what's the correct way to do this?
Thanks.
|
mahkoh 1,065 posts msg #121869 - Ignore mahkoh |
10/31/2014 4:32:12 PM
http://www.stockfetcher.com/forums/Filter-Exchange/One-Filter-Multiple-Candlestick-Patterns/120071
|
karennma 8,057 posts msg #121873 - Ignore karennma modified |
11/1/2014 9:25:07 AM
Or better still, does anyone know of stock software where you can just point to the candlestick and it tells you what kind of CS it is?
OR ....
I'd love to be able to do a simple filter like this:
Symlist(stockname) and add column candlestick
I know, I know ... in my dreams! LOL!!
|
mahkoh 1,065 posts msg #121882 - Ignore mahkoh modified |
11/2/2014 4:17:20 PM
Something like this?
Fetcher[
symlist(AAPL)
set{c1,count(pattern is bullish harami,1)}
set{c2,count(pattern is bullish engulfing,1)}
set{c3,count(pattern is Bullish Separating Lines,1)}
set{c4,count(pattern is Bullish Harami Cross,1)}
set{c5,count(pattern is Bullish Morning Doji Star,1)}
set{c6,count(pattern is Bullish Abandoned Baby,1)}
set{c7,count(pattern is Bullish Kicking,1)}
add column c1{bullish harami}
add column c2{bullish engulfing}
add column c3{Bullish Separating Lines}
add column c4{Bullish Harami Cross}
add column c5{Bullish Morning Doji Star}
add column c6{Bullish Abandoned Baby}
add column c7{ Bullish Kicking}
set{cnt1, c1 + c2}
set{cnt2, cnt1 + c3}
set{cnt3, cnt2 + c4}
set{cnt4, cnt3 + c5}
set{cnt5, cnt4 + c6}
set{cnt, cnt5 + c7}
add column cnt {PATTERN?}
]
???? is not working??
Ah, ? is the problem
|
karennma 8,057 posts msg #121884 - Ignore karennma |
11/2/2014 7:52:59 PM
@mahkoh,
Wow! THAT is really fabulous!
Good work!
:>)
|
fotchstecker 304 posts msg #121885 - Ignore fotchstecker |
11/2/2014 8:53:37 PM
Didn't get a chance to reply until now. Thanks, everyone for the replies.
Thanks very much to mahkoh -- this seems to be what I'm looking for. Thanks again!
|
mahkoh 1,065 posts msg #121888 - Ignore mahkoh |
11/3/2014 6:39:33 AM
Glad you like it. Credits go to the original authors:
http://www.stockfetcher.com/forums/Filter-Exchange/One-Filter-Multiple-Candlestick-Patterns/120071
http://www.stockfetcher.com/forums/Filter-Exchange/ANOTHER-CANDLESTICK-FILTER/81003
My work was merely browsing the forum and making a few minor adjustments.
|
duke56468 683 posts msg #121892 - Ignore duke56468 |
11/3/2014 2:37:58 PM
Very cool Mahkoh you can substitute sp500 for the symlist and and then click on any heading, bullish engulfing for example and find all the s&p stocks the made that candle today, Very nice thanks Mahkoh.
|
mahkoh 1,065 posts msg #121893 - Ignore mahkoh modified |
11/3/2014 3:24:42 PM
All supported candlestick patterns are here:
http://www.stockfetcher.com/forums/Indicators/Candlestick-Patterns/108408
expand the filter to your liking, I think you can display up to some 20 columns
and you'd want to filter out stocks that do not qualify for any pattern by adding
cnt above 0.5
|
fotchstecker 304 posts msg #122258 - Ignore fotchstecker |
12/15/2014 10:05:16 PM
I tried putting together a filter that simply showed and counted all of the bullish candle types, but my filter doesn't return anything. I've looked over this and can't find the issue. Can any of you?
close is above 2
set{c1,count(pattern is bullish harami,1)}
set{c2,count(pattern is bullish engulfing,1)}
set{c3,count(pattern is Bullish Separating Lines,1)}
set{c4,count(pattern is Bullish Harami Cross,1)}
set{c5,count(pattern is Bullish Morning Doji Star,1)}
set{c6,count(pattern is Bullish Abandoned Baby,1)}
set{c7,count(pattern is Bullish Kicking,1)}
set{c8,count(pattern is Bullish Upside Tasuki Gap,1)}
set{c9,count(pattern is Bullish Side-by-Side White Lines,1)}
set{c10,count(pattern is Bullish Three Line Strike,1)}
set{c11,count(pattern is Bullish Upside Gap Three Methods,1)}
set{c12,count(pattern is Bullish Three Inside Up,1)}
set{c13,count(pattern is Bullish Homing Pigeon,1)}
set{c14,count(pattern is Bullish Tri-Star,1)}
set{c15,count(pattern is Bullish Meeting Lines,1)}
set{c16,count(pattern is Bullish Unique Three Rivers,1)}
set{c17,count(pattern is Bullish Matching Low,1)}
set{c18,count(pattern is Bullish Concealing Baby Swallow,1)}
set{c19,count(pattern is Bullish Three White Soldiers,1)}
add column c1{bullish harami}
add column c2{bullish engulfing}
add column c3{Bullish Separating Lines}
add column c4{Bullish Harami Cross}
add column c5{Bullish Morning Doji Star}
add column c6{Bullish Abandoned Baby}
add column c7{Bullish Kicking}
add column c8{Bullish Upside Tasuki Gap}
add column c9{Bullish Side-by-Side White Lines}
add column c10{Bullish Three Line Strike}
add column c11{Bullish Upside Gap Three Methods}
add column c12{Bullish Three Inside Up}
add column c13{Bullish Homing Pigeon}
add column c14{Bullish Tri-Star}
add column c15{Bullish Meeting Lines}
add column c16{Bullish Unique Three Rivers}
add column c17{Bullish Matching Low}
add column c18{Bullish Concealing Baby Swallow}
add column c19{Bullish Three White Soldiers}
set{cnt1, c1 + c2}
set{cnt2, cnt1 + c3}
set{cnt3, cnt2 + c4}
set{cnt4, cnt3 + c5}
set{cnt5, cnt4 + c6}
set{cnt6, cnt5 + c7}
set{cnt7, cnt6 + c8}
set{cnt8, cnt7 + c9}
set{cnt9, cnt8 + c10}
set{cnt10, cn9 + c11}
set{cnt11, cnt10 + c12}
set{cnt12, cnt11 + c13}
set{cnt13, cnt12 + c14}
set{cnt14, cnt13 + c15}
set{cnt15, cnt14 + c16}
set{cnt16, cnt15 + c17}
set{cnt17, cnt16 + c18}
set{cnt, cnt17 + c19}
add column cnt {PATTERN}
count > 0
sort column 20 descending
|