/* * ============================================================================= * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform * ----------------------------------------------------------------------------- * File: server/services/python/index.ts * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Website: https://www.spboucher.ai * Demo: https://www.vquant.ai * License: MIT (see LICENSE) * * Copyright © 2026 Simon-Pierre Boucher. All rights reserved. * ============================================================================= */ // Python executor modules - split from pythonExecutor.ts (2271 lines -> 4 modules) // Monte Carlo Simulations export type { MonteCarloInput, MonteCarloResult, PythonExecutionResult } from './monteCarlo'; export { executeMonteCarloSimulation } from './monteCarlo'; // Options Pricing export type { OptionsPricingInput, OptionGreeks, OptionResult, OptionsPricingResult, OptionsPricingExecutionResult } from './optionsPricing'; export { executeOptionsPricing } from './optionsPricing'; // GARCH Volatility Modeling export type { GarchInput, GarchParameters, GarchVolatilityStats, GarchHistoricalVolatility, GarchForecast, GarchInterpretation, GarchResult, GarchExecutionResult } from './garch'; export { executeGarchModel } from './garch'; // Value at Risk (VaR) export type { VarInput, VarByConfidence, VarResult, VarExecutionResult } from './var'; export { executeVarCalculation } from './var';