@railpath/finance-toolkit
Version:
Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection
14 lines (13 loc) • 433 B
TypeScript
import { z } from 'zod';
/**
* Schema for Williams %R calculation result
*/
export declare const WilliamsRResultSchema: z.ZodObject<{
williamsR: z.ZodArray<z.ZodNumber>;
highestHigh: z.ZodArray<z.ZodNumber>;
lowestLow: z.ZodArray<z.ZodNumber>;
period: z.ZodNumber;
count: z.ZodNumber;
indices: z.ZodArray<z.ZodNumber>;
}, z.core.$strip>;
export type WilliamsRResult = z.infer<typeof WilliamsRResultSchema>;