rangebar_batch/lib.rs
1//! Batch processing and analysis using Polars
2//!
3//! This module provides batch analytics capabilities powered by Polars
4//! for research, backtesting, and advanced statistical analysis.
5
6pub mod engine;
7
8// Re-export commonly used types
9pub use engine::{AnalysisReport, BatchAnalysisEngine, BatchConfig, BatchError, BatchResult};