Skip to main content

datasynth_generators/treasury/
mod.rs

1//! Treasury and cash management generators.
2//!
3//! This module provides generators for:
4//! - Daily cash positions aggregated from payment flows
5//! - Cash forecasts with probability-weighted items
6//! - Cash pool sweeps (zero-balancing, physical, notional)
7//! - Hedging instruments and hedge relationship designations
8//! - Debt instruments with amortization schedules and covenants
9//! - Bank guarantees and letters of credit
10//! - Intercompany netting runs
11
12mod cash_forecast_generator;
13mod cash_pool_generator;
14mod cash_position_generator;
15mod debt_generator;
16mod hedging_generator;
17mod treasury_anomaly;
18
19pub use cash_forecast_generator::*;
20pub use cash_pool_generator::*;
21pub use cash_position_generator::*;
22pub use debt_generator::*;
23pub use hedging_generator::*;
24pub use treasury_anomaly::*;