/** * Parkinson volatility estimator * Uses high-low range, more efficient than close-to-close * * Parkinson, M. (1980). "The Extreme Value Method for Estimating the Variance of the Rate of Return" */ export declare function calculateParkinsonVolatility(highPrices: number[], lowPrices: number[]): number;