Interface VWAPResult

Interface representing VWAP calculation result with standard deviation bands.

VWAPResult

interface VWAPResult {
    lowerBand: number;
    upperBand: number;
    vwap: number;
}

Properties

lowerBand: number

Lower band calculated as VWAP - (standardDeviation * deviationMultiplier). Null if insufficient data for standard deviation calculation.

upperBand: number

Upper band calculated as VWAP + (standardDeviation * deviationMultiplier). Null if insufficient data for standard deviation calculation.

vwap: number

The main VWAP (Volume-Weighted Average Price) value. Null if no data has been processed.

Generated using TypeDoc