UNPKG

black-scholes-model

Version:

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

10 lines 315 B
export interface IBisection { seekValue: number; lowStartVolatility: number; highStartVolatility: number; tolerance: number; iterations: number; fn(volatility: number): number; } export declare const bisection: (params: IBisection) => number; //# sourceMappingURL=bisection.d.ts.map