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) 290 B
import { z } from 'zod'; /** * Schema for Relative Strength Index (RSI) calculation options */ export declare const RSIOptionsSchema: z.ZodObject<{ prices: z.ZodArray<z.ZodNumber>; period: z.ZodNumber; }, z.core.$strip>; export type RSIOptions = z.infer<typeof RSIOptionsSchema>;