datasynth_generators/fx/mod.rs
1//! FX (Foreign Exchange) generators.
2//!
3//! This module provides generators for:
4//! - FX rates using Ornstein-Uhlenbeck mean-reverting process
5//! - Currency translation for trial balances
6//! - Currency Translation Adjustment (CTA) calculations
7
8mod cta_generator;
9mod currency_translator;
10mod fx_rate_service;
11
12pub use cta_generator::*;
13pub use currency_translator::*;
14pub use fx_rate_service::*;