Interface IXABCDPattern

Represents the XABCD pattern with its points and calculated ratios, typically used in harmonic pattern analysis.

interface IXABCDPattern {
    A: IZigZag;
    ABC: number;
    B: IZigZag;
    BCD: number;
    C: IZigZag;
    D?: IZigZag;
    X: IZigZag;
    XAB: number;
    XAD: number;
    error?: number;
}

Hierarchy

Properties

Properties

The second point of the XABCD pattern.

ABC: number

The ratio of the BC segment to the AB segment.

The third point of the XABCD pattern.

BCD: number

The ratio of the CD segment to the BC segment.

The fourth point of the XABCD pattern.

The fifth and final point of the XABCD pattern.

The starting point of the XABCD pattern.

XAB: number

The ratio of the AB segment to the XA segment.

XAD: number

The ratio of the XD segment to the XA segment.

error?: number

The error rate in the pattern recognition process.

Generated using TypeDoc