namespace Managing.Domain.Backtests;
///
/// Represents the result of a genetic algorithm run
///
public class GeneticAlgorithmResult
{
///
/// The best fitness score achieved
///
public double BestFitness { get; set; }
///
/// The best individual (chromosome) found
///
public string BestIndividual { get; set; } = string.Empty;
///
/// Progress information as JSON string
///
public string ProgressInfo { get; set; } = string.Empty;
///
/// When the algorithm completed
///
public DateTime CompletedAt { get; set; } = DateTime.UtcNow;
}