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

Continuation Structures

6 algorithms in Geometric Chart Patterns.

In this family#

  1. Ascending Triangle contract

    detectAscendingTriangle()
  2. Descending Triangle contract

    detectDescendingTriangle()
  3. Symmetrical Triangle contract

    detectSymmetricalTriangle()
  4. Flag contract

    detectFlag()
  5. Pennant contract

    detectPennant()
  6. Rising/Falling Wedge contract

    detectRisingFallingWedge()

What they share#

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

ts
import { detectAscendingTriangle } from "fintech-algorithms/geometric-chart-patterns/continuation-structures/ascending-triangle";
import { detectDescendingTriangle } from "fintech-algorithms/geometric-chart-patterns/continuation-structures/descending-triangle";

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.