Skip to content

Pattern Algorithms

Benny Thadikaran edited this page Dec 26, 2023 · 6 revisions

Identifying Pivots

Implementation: utils.py:getMaxMin

Chart showing pivot formation

By default,

  • a pivot high is a high, unbroken by 6 candles before or after.
  • a pivot low is a low, unbroken by 6 candles before or after.

This means after a new local High or Low is formed, it takes 6 additional candles to confirm the pivot.

The getMaxMin(df, barsLeft=6, barsRight=6) function returns a Pandas Series of the pivot high and lows. The default argument ensures only major pivots are returned. The pivots are used to identify patterns.

You can tweak the result by changing the barsLeft and barsRight argument. Reducing the values will result in more pivots (major and minor) being returned.

Are Two points forming a straight line

Two points are considered on a straight line if their absolute difference falls within the average candle range (High - Low).

For ex: A and B are in a straight line in abs(a - b) <= averageCandleRange.

This is followed throughout the script, whenever straight lines are desired. Lines drawn across these points will often appear with some degree of slope.

Head & Shoulders (Bearish Pattern)

Rules

Implementation: utils.py:isHNS

c > max(a, e) and max(b, d) < min(a, e) and f < e and abs(b - d) < avgBarLength

  • C is the highest point
  • A and E are below C
  • B and D are lower than all other points
  • F is the Close and has not breached E or D
  • avgBarLength is the average candle range (High - Low) between B and D

HEAD & SHOULDERS (BEARISH)
                C
                /\
        A      /  \      E
        /\    /    \    /\
       /  \  /      \  /  \F
      /    \/________\/_______Neckline
     /      B         D
    /

Some patterns will have a degree of slope in the neckline. see Straight Line

Algorithm

Implementation: utils.py:findHNS

  1. Create a list of High and Low pivot points from the price data and assign it to P.
  2. F is the last Close value in the price data
  3. Set the highest point in P to C.
  4. From the pivots P:
    1. Set the highest point before C to A.
    2. Set the lowest point between A and C to B
    3. Set the highest point after C to E
    4. Set the lowest point between C and E to D
  5. Check if points A, B, C, D, E, and F validate against the Head and Shoulder rules.
  6. If not validated, set C equal to E (E being the next highest pivot) and repeat step 4.
  7. If validated:
    1. Draw a trendline (Neckline) below B and D.
    2. If the last closing price has not breached below the neckline, we have a confirmed pattern.

Pennants - Symetrical / Ascending / Descending Triangles, Wedge

Rules

         Symetrical                 Ascending                   Descending
          A                        A         C       E             A
         /\        C              /\        /\      /\            /\        C       
        /  \      /\    E        /  \      /  \    /  \          /  \      /\      E
       /    \    /  \  /\       /    \    /    \  /    \        /    \    /  \    /\ 
      /      \  /    \/  F     /      \  /      \/      F      /      \  /    \  /  \
     /        \/      D       /        \/        D            /        \/      \/    F
    /         B              /          B                    /          B       D

Returns the first pattern that matches:

  • a > c > e and b < d < f and e > f (Symetrical Triangles)
  • abs(a - c) <= avgBarLength and abs(c - e) <= avgBarLength and b < d < f < e (Ascending Triangle)
  • abs(b - d) <= avgBarLength and a > c > e > f and f > d (Descending Triangles)
  • AvgBarLength is the average candle range (High - Low) between A to D.

Ascending and Descending Triangles can appear pointing upward or downward. In some rare cases, triangles may appear in a broadening formation. These are valid patterns and rules are purposefully set to allow these variations.

Work in progress (More entries to follow soon)

Clone this wiki locally