Candlestick Patterns Quick Reference Cards Pdf To Word

The first two chapters of Candlesticks, Fibonacci, and Chart Pat-tern Toolsbriefly set forth the psychology and philosophy of success-ful trading. In Chapter 3, we introduce the basic concepts of the Fibonacci analysis, candlesticks, and chart patterns. Experienced traders can skip these preliminaries and go on to Chapter 4, where we. Chart patterns can be bullish, bearish, or show a price reversal depending on the direction of the momentum. They can also be used as risk management tools showing where to set stop losses if a breakout fails or set profit targets for a continuation. A chart pattern is a visual tool for seeing which direction a market is moving in. This pattern can be created anywhere in the market trend. Evening doji star. This pattern consists of a bullish trend. It has a long bullish candlestick. The first two candles act as bearish candlesticks. This pattern is similar to the evening star pattern. It creates a gap between the candlestick bodies.

This quick reference is a summary of all the regex syntax that is listed in the full reference tables, without any explanation. You can use this table if you’ve seen some syntax in somebody else’s regex and you have no idea what feature that syntax is for. Follow the link to learn more about the syntax in the tutorial. Since the full reference tables cover a variety of regex flavors, this quick reference may have multiple entries for the same syntax with links to different sections in the tutorial if different regex flavors use the same syntax for different features.

Candlestick Patterns Quick Reference Cards Pdf To Word

If you already know the feature you want but forgot which syntax to use, look up the feature in the regex reference table of contents instead.

SyntaxFeature
Any character except [^$.|?*+()Literal character
followed by any of [^$.|?*+(){}Backslash escapes a metacharacter
.Any character
|Alternation
|Alternation
?Greedy quantifier
?Greedy quantifier
??Lazy quantifier
?+Possessive quantifier
*Greedy quantifier
*?Lazy quantifier
*+Possessive quantifier
+Greedy quantifier
+Greedy quantifier
+?Lazy quantifier
++Possessive quantifier
{ and }Literal curly braces
{n} where n is an integer >= 1Fixed quantifier
{n,m} where n >= 0 and m >= nGreedy quantifier
{n,} where n >= 0Greedy quantifier
{,m} where m >= 1Greedy quantifier
{n} where n is an integer >= 1Fixed quantifier
{n,m} where n >= 0 and m >= nGreedy quantifier
{n,} where n >= 0Greedy quantifier
{,m} where m >= 1Greedy quantifier
{n,m}? where n >= 0 and m >= nLazy quantifier
{n,}? where n >= 0Lazy quantifier
{,m}? where m >= 1Lazy quantifier
{n,m}+ where n >= 0 and m >= nPossessive quantifier
{n,}+ where n >= 0Possessive quantifier
^String anchor
^Line anchor
$String anchor
$Line anchor
aCharacter escape
AString anchor
AAttempt anchor
bWord boundary
bBackspace character
BWord non-boundary
BBackslash character
cXML shorthand
ca through czControl character escape
cA through cZControl character escape
CXML shorthand
dDigits shorthand
DNon-digits shorthand
eEscape character
fForm feed character
g{name}Named backreference
g-1, g-2, etc.Relative Backreference
g{-1}, g{-2}, etc.Relative Backreference
g1 through g99Backreference
g{1} through g{99}Backreference
g<name> where “name” is the name of a capturing groupNamed subroutine call
g<name> where “name” is the name of a capturing groupNamed backreference
g'name' where “name” is the name of a capturing groupNamed subroutine call
g'name' where “name” is the name of a capturing groupNamed backreference
g<0>Recursion
g'0'Recursion
g<1> where 1 is the number of a capturing groupSubroutine call
g<1> where 1 is the number of a capturing groupBackreference
g'1' where 1 is the number of a capturing groupSubroutine call
g'1' where 1 is the number of a capturing groupBackreference
g<-1> where -1 is a negative integerRelative subroutine call
g<-1> where -1 is a negative integerRelative backreference
g'-1' where -1 is a negative integerRelative subroutine call
g'-1' where -1 is a negative integerRelative backreference
g<+1> where +1 is a positive integerForward subroutine call
g'+1' where +1 is a positive integerForward subroutine call
GAttempt anchor
GMatch anchor
hHexadecimal digit shorthand
hHorizontal whitespace shorthand
HNon-hexadecimal digit shorthand
HNon-horizontal whitespace shorthand
iXML shorthand
IXML shorthand
k<name>Named backreference
k'name' through k'99'Named backreference
k{name}Named backreference
k<1> through k<99>Backreference
k'1' through k'99'Backreference
k<-1>, k<-2>, etc.Relative Backreference
k'-1', k'-2', etc.Relative Backreference
KKeep text out of the regex match
lLowercase shorthand
LNon-lowercase shorthand
mTcl start of word boundary
MTcl end of word boundary
nLine feed character
NNot a line break
Literal CRLF, LF, or CR line breakLine break
o{7777} where 7777 is any octal numberOctal escape
pL where L is a Unicode categoryUnicode category
PL where L is a Unicode categoryUnicode category
p{L} where L is a Unicode categoryUnicode category
p{IsL} where L is a Unicode categoryUnicode category
p{Category}Unicode category
p{IsCategory}Unicode category
p{Script}Unicode script
p{IsScript}Unicode script
p{Block}Unicode block
p{InBlock}Unicode block
p{IsBlock}Unicode block
P{Property}Negated Unicode property
p{^Property}Negated Unicode property
P{^Property}Unicode property
Q…EEscape sequence
rCarriage return character
RLine break
sWhitespace shorthand
SNon-whitespace shorthand
tTab character
uUppercase shorthand
uFFFF where FFFF are 4 hexadecimal digitsUnicode code point
u{FFFF} where FFFF are 1 to 4 hexadecimal digitsUnicode code point
UNon-uppercase shorthand
vVertical tab character
vVertical whitespace shorthand
VNon-vertical whitespace shorthand
wWord character shorthand
WNon-word character shorthand
xFF where FF are 2 hexadecimal digits Hexadecimal escape
xFFFF where FFFF are 4 hexadecimal digitsUnicode code point
x{FFFF} where FFFF are 1 to 4 hexadecimal digitsUnicode code point
XUnicode grapheme
yTcl word boundary
YTcl word non-boundary
ZString anchor
zString anchor
0NULL escape
1 through 7Octal escape
1 through 9Backreference
10 through 77Octal escape
10 through 99Backreference
100 through 377Octal escape
01 through 0377Octal escape
String anchor
Attempt anchor
'String anchor
<GNU word boundary
>GNU word boundary
[[:<:]]POSIX word boundary
[[:>:]]POSIX word boundary
(regex)Capturing group
(regex)Capturing group
(?:regex)Non-capturing group
(?<name>regex)Named capturing group
(?'name'regex)Named capturing group
(?#comment)Comment
(?|regex)Branch reset group
(?>regex)Atomic group
(?=regex)Positive lookahead
(?!regex)Negative lookahead
(?<=regex)Positive lookbehind
(?<!regex)Negative lookbehind
(?(?=regex)then|else) where (?=regex) is any valid lookaround and then and else are any valid regexesLookaround conditional
(?(regex)then|else) where regex, then, and else are any valid regexes and regex is not the name of a capturing groupImplicit lookahead conditional
(?(name)then|else) where name is the name of a capturing group and then and else are any valid regexesNamed conditional
(?(<name>)then|else) where name is the name of a capturing group and then and else are any valid regexesNamed conditional
(?('name')then|else) where name is the name of a capturing group and then and else are any valid regexesNamed conditional
(?(1)then|else) where 1 is the number of a capturing group and then and else are any valid regexesConditional
(?(-1)then|else) where -1 is a negative integer and then and else are any valid regexesRelative conditional
(?(+1)then|else) where +1 is a positive integer and then and else are any valid regexesForward conditional
(?(+1)then|else) where 1 is the number of a capturing group and then and else are any valid regexesConditional
(?<capture-subtract>regex) where “capture” and “subtract” are group names and “regex” is any regexBalancing group
(?'capture-subtract'regex) where “capture” and “subtract” are group names and “regex” is any regexBalancing group
(?&name) where “name” is the name of a capturing groupNamed subroutine call
(?(DEFINE)regex) where “regex” is any regexSubroutine definitions
(?P<name>regex)Named capturing group
(?P=name)Named backreference
(?P=1) through (?P=99)Backreference
(?P>name) where “name” is the name of a capturing groupNamed subroutine call
(?R)Recursion
(?0)Recursion
(?1) where 1 is the number of a capturing groupSubroutine call
(?-1) where -1 is a negative integerRelative subroutine call
(?+1) where +1 is a positive integerForward subroutine call

Character Class SyntaxFeature
Any character except ^-]Literal character
(backslash) followed by any of ^-]Backslash escapes a metacharacter
Literal backslash
- between two tokens that each specify a single characterRange
^ immediately after the opening [Negated character class
[Literal opening bracket
[Nested character class
[base-[subtract]]Character class subtraction
[base&&[intersect]]Character class intersection
[base&&intersect]Character class intersection
[:alpha:]POSIX class
[:^alpha:]Negated POSIX class
p{Alpha}POSIX class
p{IsAlpha}POSIX class
[.span-ll.]POSIX collation sequence
[=x=]POSIX character equivalence

Make a Donation

Quick

Did this website just save you a trip to the bookstore? Please make a donation to support this site, and you'll get a lifetime of advertisement-free access to this site!

Page URL: https://www.regular-expressions.info/refquick.html
Page last updated: 26 April 2021
Site last updated: 11 August 2021
Copyright © 2003-2021 Jan Goyvaerts. All rights reserved.

There are many candlestick patterns but only a few are actually worth knowing. Here are 10 candlestick patterns worth looking for. Remember that these patterns are only useful when you understand what is happening in each pattern.

They must be combined with other forms of technical analysis to really be useful. For example, when you see one of these patterns on the daily chart, move down to the hourly chart. Does the hourly chart agree with your expectations on the daily chart? If so, then the odds of a reversal increase.

The following patterns are divided into two parts: Bullish patterns and bearish patterns. These are reversal patterns that show up after a pullback (bullish patterns) or a rally (bearish patterns).

Want to take a course that teaches you all the common candlestick patterns, shows you the backtesting for each pattern, and then puts it all together into a complete trading system? Take the course, Candlestick Analysis For Professional Traders.

Bullish candlestick patterns

Ok, let's begin with the first one...

Engulfing

This is my all time favorite candlestick pattern. This pattern consists of two candles. The first day is a narrow range candle that closes down for the day. The sellers are still in control of the stock but because it is a narrow range candle and volatility is low, the sellers are not very aggressive. The second day is a wide range candle that 'engulfs' the body of the first candle and closes near the top of the range. The buyers have overwhelmed the sellers (demand is greater than supply). Buyers are ready to take control of this stock!

Candlestick Patterns Quick Reference Cards Pdf To Word

Hammer

Candlestick patterns quick reference cards pdf to word freeQuick

As discussed on the previous page, the stock opened, then at some point the sellers took control of the stock and pushed it lower. By the end of the day, the buyers won and had enough strength to close the stock at the top of the range. Hammers can develop after a cluster of stop loss orders are hit. That's when professional traders come in to grab shares at a lower price. Learn more about how to trade a hammer candlestick pattern.

Harami

When you see this pattern the first thing that comes to mind is that the momentum preceding it has stopped. On the first day you see a wide range candle that closes near the bottom of the range. The sellers are still in control of this stock. Then on the second day, there is only a narrow range candle that closes up for the day. Note: Do not confuse this pattern with the engulfing pattern. The candles are opposite!

Piercing

This is also a two-candle reversal pattern where on the first day you see a wide range candle that closes near the bottom of the range. The sellers are in control. On the second day you see a wide range candle that has to close at least halfway into the prior candle. Those that shorted the stock on first day are now sitting at a loss on the rally that happens on the second day. This can set up a powerful reversal.

Candlestick Patterns Quick Reference Cards Pdf To Word Converter

Doji

The doji is probably the most popular candlestick pattern. The stock opens up and goes nowhere throughout the day and closes right at or near the opening price. Quite simply, it represents indecision and causes traders to question the current trend. This can often trigger reversals in the opposite direction. Learn more about how to trade a doji candlestick pattern.

Bearish candlestick patterns

You'll notice that all of these bearish patterns are the opposite of the bullish patterns. These patterns come after a rally and signify a possible reversal just like the bullish patterns.

Ok, now it's your turn! I'll let you figure out what is happening in each of the patterns above to cause these to be considered bearish. Look at each candle and try to get into the minds of the traders involved in the candle.

Kickers

Candlestick Patterns Quick Reference Cards Pdf To Word

There is one more pattern worthy of mention. A 'kicker' is sometimes referred to as the most powerful candlestick pattern of all.

You can see in the above graphic why this pattern is so explosive. Like most candle patterns there is a bullish and bearish version. In the bullish version, the stock is moving down and the last red candle closes at the bottom of the range.

Then, on the next day, the stock gaps open above the previous days high and close. This 'shock event' forces short sellers to cover and brings in new traders on the long side.

This is reversed in the bearish version.

Should you wait for confirmation?

Most traders are taught to 'wait for confirmation' with candlestick patterns. This means that they are supposed to wait until the following day to see if the stock reverses afterward. This is absolutely ridiculous!

Candlestick Patterns Quick Reference Cards Pdf To Word Document

I ain't waitin' for no stinkin' confirmation!

How's that for good grammar! Seriously, think about it for a second. If a stock pulls back to an area of demand (support) and I have a candlestick pattern that is telling me that buyers are taking control of the stock, then that is all the confirmation I need.

As a swing trader I have to get in before the crowd piles in, not when they get in! In other words, I want to be one of the traders that make up the pattern itself! That is the low risk, high odds play.

Candlestick Patterns Quick Reference Cards Pdf To Word Free

Just the way I like it.