UNPKG

quantitivecalc

Version:

A TypeScript library providing advanced quantitative finance functions for risk analysis, performance metrics, and technical indicators. (Currently in development)

15 lines 609 B
/** * Returns the Z-score corresponding to a given confidence level. * * Common confidence levels and their Z-scores: * - 0.01 (99% confidence): -2.326 * - 0.05 (95% confidence): -1.645 * - 0.10 (90% confidence): -1.282 * * If the provided confidence level is not found, defaults to the Z-score for 95% confidence (-1.645). * * @param confidenceLevel - The confidence level as a decimal (e.g., 0.05 for 95% confidence). * @returns The Z-score associated with the given confidence level. */ export declare function getZScore(confidenceLevel: number): number; //# sourceMappingURL=getZScore.d.ts.map