@railpath/finance-toolkit
Version:
Production-ready finance library for portfolio construction, risk analytics, quantitative metrics, and ML-based regime detection
11 lines (10 loc) • 358 B
TypeScript
import { z } from 'zod';
/**
* Schema for Bollinger Bands calculation options
*/
export declare const BollingerBandsOptionsSchema: z.ZodObject<{
prices: z.ZodArray<z.ZodNumber>;
period: z.ZodNumber;
stdDevMultiplier: z.ZodDefault<z.ZodNumber>;
}, z.core.$strip>;
export type BollingerBandsOptions = z.infer<typeof BollingerBandsOptionsSchema>;