@railpath/finance-toolkit
Version:
Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection
8 lines (7 loc) • 339 B
TypeScript
import { z } from 'zod';
export declare const TimeWeightedReturnOptionsSchema: z.ZodObject<{
portfolioValues: z.ZodArray<z.ZodNumber>;
cashFlows: z.ZodArray<z.ZodNumber>;
annualizationFactor: z.ZodDefault<z.ZodNumber>;
}, z.core.$strip>;
export type TimeWeightedReturnOptions = z.infer<typeof TimeWeightedReturnOptionsSchema>;