@pond-ts/charts API Reference
    Preparing search index...

    Interface BoxColumns

    The quantile column names a boxFromTimeSeries / boxFromValueSeries reads. lower/upper (the whisker reach) are required; q1/q3 (the box body) and median (the centre line) are optional — omit them for a range-only box (a bid→ask IV segment: whiskers only, no body). Omitting exactly one of q1/q3 is a data error (a box needs both edges or neither).

    interface BoxColumns {
        lower: string;
        median?: string;
        q1?: string;
        q3?: string;
        upper: string;
    }
    Index

    Properties

    lower: string

    Lower whisker end (e.g. p5 / min). Required.

    median?: string

    Median line inside the box (e.g. p50). Omit for no centre line.

    q1?: string

    Box bottom — first quartile (e.g. p25). Omit with q3 for a range-only box.

    q3?: string

    Box top — third quartile (e.g. p75). Omit with q1 for a range-only box.

    upper: string

    Upper whisker end (e.g. p95 / max). Required.