UNPKG

@railpath/finance-toolkit

Version:

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

6 lines (5 loc) 217 B
import { z } from 'zod'; export declare const MaxDrawdownOptionsSchema: z.ZodObject<{ prices: z.ZodArray<z.ZodNumber>; }, z.core.$strip>; export type MaxDrawdownOptions = z.infer<typeof MaxDrawdownOptionsSchema>;