• Determines whether a candle is an excess candle. An excess candle is identified by the length of its tails relative to its body.

    Parameters

    • candle: ICandle

      The candle to check for excess.

    Returns boolean

    True if the candle is an excess candle, otherwise false.

    Example

    import { CandlestickPatterns } from '@focus1691/chart-patterns';

    // Assuming 'candle' is an ICandle object
    const isExcessCandle: boolean = CandlestickPatterns.isExcess(candle);

Generated using TypeDoc