Interface IDivergencePoint

interface IDivergencePoint {
    direction: "HIGH" | "LOW";
    indicatorValue: number;
    isMatch: boolean;
    peakIndex: number;
    priceValue: number;
    time: Date;
}

Properties

direction: "HIGH" | "LOW"
indicatorValue: number
isMatch: boolean
peakIndex: number
priceValue: number
time: Date

Generated using TypeDoc