stochastic-rs 2.0.0-beta.3

A Rust library for quant finance and simulating stochastic processes.
Documentation
//! # Lib
//!
//! $$
//! V_0 = \mathbb{E}^{\mathbb{Q}}\!\left[e^{-\int_0^T r_t\,dt}\,\Pi(X_T)\right]
//! $$
//!
#![doc = include_str!("../README.md")]
#![allow(non_snake_case)]
#![allow(clippy::type_complexity)]
#![allow(clippy::too_many_arguments)]
//#![warn(missing_docs)]

#[cfg(feature = "mimalloc")]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

#[cfg(feature = "jemalloc")]
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

#[cfg(feature = "ai")]
pub use stochastic_rs_ai as ai;
pub use stochastic_rs_copulas as copulas;
pub use stochastic_rs_core::simd_rng;
pub use stochastic_rs_distributions as distributions;
pub use stochastic_rs_quant as quant;
pub use stochastic_rs_stats as stats;
pub use stochastic_rs_stochastic as stochastic;
pub mod traits;
pub use stochastic_rs_viz as visualization;

// Python bindings will live in `stochastic-rs-py` (Phase 6 follow-up).
// The umbrella `python` feature is currently a no-op pending that migration.

/// Convenience prelude that re-exports the most commonly used types and traits.
///
/// Bring this in scope to get the canonical trait set (`ProcessExt`,
/// `FloatExt`, `ModelPricer`, `BivariateExt`, …) and the option-type enums
/// without pulling them one by one.
///
/// ```ignore
/// use stochastic_rs::prelude::*;
///
/// let bm = stochastic_rs::stochastic::process::bm::Bm::new(1000, Some(1.0));
/// let path = bm.sample();
/// ```
pub mod prelude {
  pub use stochastic_rs_quant::Moneyness;
  pub use stochastic_rs_quant::OptionStyle;
  pub use stochastic_rs_quant::OptionType;

  pub use crate::traits::BivariateExt;
  pub use crate::traits::CalibrationResult;
  pub use crate::traits::Calibrator;
  pub use crate::traits::DistributionExt;
  pub use crate::traits::DistributionSampler;
  pub use crate::traits::FloatExt;
  pub use crate::traits::GreeksExt;
  pub use crate::traits::Instrument;
  pub use crate::traits::InstrumentExt;
  pub use crate::traits::ModelPricer;
  pub use crate::traits::PricerExt;
  pub use crate::traits::PricingEngine;
  pub use crate::traits::PricingResult;
  pub use crate::traits::ProcessExt;
  pub use crate::traits::SimdFloatExt;
  pub use crate::traits::TimeExt;
  pub use crate::traits::ToModel;
}