@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface VolumeBin

    One horizontal price bin of a VolumeProfile: the volume that traded (proportionally) inside the half-open price band [priceLow, priceHigh) across the analyzed candles.

    interface VolumeBin {
        priceHigh: number;
        priceLow: number;
        volume: number;
    }
    Index

    Properties

    priceHigh: number

    Upper price edge of the bin (exclusive, except the top bin which is closed).

    priceLow: number

    Lower price edge of the bin (inclusive).

    volume: number

    Total volume attributed to this bin.