UNPKG

black-scholes-model

Version:

Complete plug and play Black-Scholes-Merton model for option pricing with features including implied volatility and Greeks.

9 lines 241 B
declare type CDFReturnType = number; interface ICdfInputs { x: number; mean?: number; vol?: number; } export declare const cdf: ({ x, mean, vol }: ICdfInputs) => CDFReturnType; export {}; //# sourceMappingURL=cdf.d.ts.map