Errata

Mastering Financial Pattern Recognition

Errata for Mastering Financial Pattern Recognition

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
PDF Page Chapter6 The Tweezers Pattern (p.134)
Python code : bullish pattern (line no.4)

Original code:
data[i - 1, close_column] - data[i - 1, open_column] < body

Suggest to change:
data[i - 1, open_column] - data[i - 1, close_column] < body

Reason:
This (i-1) candle stick is a bearish one, so the original code will get the minus value to compare with plus value of body.

Sukit Deeyiengyang  May 10, 2024 
PDF Page Chapter4 The Three Candles Pattern (p.74)
#bearish pattern (Python code)

Original code :
#Bearish pattern
data[i, close_column] - data[i, open_column] > body and \
data[i - 1, close_column] - data[i - 1, open_column] > \
body and data[i - 2, close_column] - \
data[i - 2, open_column] > body and data[i, close_column] \

Suggest to change:
data[i, open_column] - data[i, close_column] > body and \
data[i - 1, open_column] - data[i - 1, close_column] > \
body and data[i - 2, open_column] - \
data[i - 2, close_column] > body and data[i, close_column] \

Reason:
close_price minus with open_price in bearish candle will result minus value that cannot to compare with positive body value.

Sukit Deeyiengyang  May 10, 2024