UNPKG

@railpath/finance-toolkit

Version:

Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection

10 lines (9 loc) 384 B
import { z } from 'zod'; export declare const CorrelationMatrixResultSchema: z.ZodObject<{ matrix: z.ZodArray<z.ZodArray<z.ZodNumber>>; labels: z.ZodArray<z.ZodString>; averageCorrelation: z.ZodNumber; maxCorrelation: z.ZodNumber; minCorrelation: z.ZodNumber; }, z.core.$strip>; export type CorrelationMatrixResult = z.infer<typeof CorrelationMatrixResultSchema>;