Continuation Structures
6 algorithms in Geometric Chart Patterns.
In this family#
-
Ascending Triangle contract
detectAscendingTriangle() -
Descending Triangle contract
detectDescendingTriangle() -
Symmetrical Triangle contract
detectSymmetricalTriangle() -
Flag contract
detectFlag() -
Pennant contract
detectPennant() -
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:
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.