SPB Git

spb/vquant Public MIT

VibeQuant — AI-powered institutional-grade financial intelligence platform.

TypeScript 84.3% Python 11.7% JavaScript 1.6% CSS 1.5% HTML 0.7%
1.5 KB · 58 lines typescript
Raw Blame History
1/*2 * =============================================================================3 *  VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 *  File:      server/services/python/index.ts6 *7 *  Author:    Simon-Pierre Boucher8 *  Contact:   contact@spboucher.ai9 *  Website:   https://www.spboucher.ai10 *  Demo:      https://www.vquant.ai11 *  License:   MIT (see LICENSE)12 *13 *  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617// Python executor modules - split from pythonExecutor.ts (2271 lines -> 4 modules)1819// Monte Carlo Simulations20export type {21  MonteCarloInput,22  MonteCarloResult,23  PythonExecutionResult24} from './monteCarlo';25export { executeMonteCarloSimulation } from './monteCarlo';2627// Options Pricing28export type {29  OptionsPricingInput,30  OptionGreeks,31  OptionResult,32  OptionsPricingResult,33  OptionsPricingExecutionResult34} from './optionsPricing';35export { executeOptionsPricing } from './optionsPricing';3637// GARCH Volatility Modeling38export type {39  GarchInput,40  GarchParameters,41  GarchVolatilityStats,42  GarchHistoricalVolatility,43  GarchForecast,44  GarchInterpretation,45  GarchResult,46  GarchExecutionResult47} from './garch';48export { executeGarchModel } from './garch';4950// Value at Risk (VaR)51export type {52  VarInput,53  VarByConfidence,54  VarResult,55  VarExecutionResult56} from './var';57export { executeVarCalculation } from './var';58