Chartbreaker
    Preparing search index...

    Type Alias InternalFibonacciRetracement

    internal data structure to store custom fibonacci keys e.g. [{ key: "163.7%", value: 1.637, enabled: true, color: 'rgba(255,255,0,0.5)'}]

    type InternalFibonacciRetracement = {
        color?: string;
        enabled: boolean;
        key: InternalFibonacciKey;
        value: number;
    }
    Index

    Properties

    Properties

    color?: string
    enabled: boolean
    value: number