use serde::{Deserialize, Serialize};
#[non_exhaustive]
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BenchmarkMetrics {
pub symbol: String,
pub benchmark_return_pct: f64,
pub buy_and_hold_return_pct: f64,
pub alpha: f64,
pub beta: f64,
pub information_ratio: f64,
pub tracking_error: f64,
}