Reincharts
    Preparing search index...

    Interface MACDSeriesProps

    interface MACDSeriesProps {
        className?: string;
        clip?: boolean;
        fillStyle?: { divergence: string };
        strokeStyle?: { macd: string; signal: string; zero: string };
        width?:
            | number
            | ((props: { widthRatio: number }, moreProps: any) => number);
        widthRatio?: number;
        yAccessor: (
            data: any,
        ) => undefined | { divergence: number; macd: number; signal: number };
    }
    Index

    Properties

    className?: string

    CSS class name for the series.

    clip?: boolean

    Clip the series to the chart area.

    fillStyle?: { divergence: string }

    Object specifying divergence bar fill color.

    strokeStyle?: { macd: string; signal: string; zero: string }

    Object specifying stroke colors for MACD, signal, and zero lines.

    width?: number | ((props: { widthRatio: number }, moreProps: any) => number)

    Width of each bar, or a function to determine width.

    widthRatio?: number

    Ratio of bar width to available space.

    yAccessor: (
        data: any,
    ) => undefined | { divergence: number; macd: number; signal: number }

    Data accessor function for MACD values.