nyxs_owl 0.4.0

A comprehensive Rust library for trading, forecasting, and financial analysis
Documentation
1
2
3
4
5
6
7
8
//! # Trend Following Strategies
//!
//! This module provides trend following trading strategies based on technical indicators.

pub mod moving_average_crossover;

// Re-export for convenient access
pub use moving_average_crossover::MovingAverageCrossover;