//! # Strategy Library Prelude
//!
//! This module re-exports the most commonly used types and functions from the strategy library.
//! Importing this module with `use strategy_lib::prelude::*;` is the recommended way to
//! get started with the library.
// Core strategy types
pub use crate;
// Backtesting
pub use crate;
// Specific strategies
pub use crateMovingAverageCrossover;
// Utility functions
pub use crate;