atelier_quant 0.0.12

Quantitative Finance Tools & Models for the atelier-rs engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Homogeneous Poisson point-process model.
//!
//! This module provides:
//!
//! - [`PoissonProcess`] — simulation via inverse-CDF exponential
//!   interarrivals (see [`core`]).
//! - [`estimation`] — closed-form maximum-likelihood estimation,
//!   goodness-of-fit diagnostics (AIC / BIC), and time-rescaling
//!   residuals.
//! - [`errors`] — error types for invalid rate parameters.
//!
//! The Poisson process serves as the natural **null hypothesis** when
//! benchmarking self-exciting models such as Hawkes.

pub mod core;
pub use core::PoissonProcess;
pub mod errors;
pub mod estimation;