fintech-algorithms
Using a coding agent? Give it the skill: npx skills add IslamBaraka90/Fintech-Algorithms-Library What it does →

Pattern Matching

4 algorithms in Geometric Chart Patterns.

In this family#

  1. Normalized Template Matching contract

    match()
  2. Dynamic-Time-Warping Pattern Match contract

    match()
  3. Matrix-Profile Motif Discovery contract

    discover()
  4. Shapelet Pattern Classifier contract

    classify()

What they share#

Every topic here is a record-transform</code> or <code>row-classify, so once you have called one the rest follow the same shape. Import paths differ only in the final segment:

ts
import { match } from "fintech-algorithms/geometric-chart-patterns/pattern-matching/normalized-template-matching";
import { match } from "fintech-algorithms/geometric-chart-patterns/pattern-matching/dynamic-time-warping-pattern-match";

Read them in the order above — the sequence is pedagogical, not alphabetical.

Where this sits#

Geometric Chart Patterns collects 37 algorithms across 6 families. For the concept behind this family rather than the call signatures, see the concept guides.