This commit is contained in:
2025-11-09 02:08:31 +07:00
parent 1ed58d1a98
commit 7dba29c66f
57 changed files with 8362 additions and 359 deletions

View File

@@ -550,4 +550,20 @@ public static class Enums
InsufficientEthBelowMinimum,
BotsHaveOpenPositions
}
/// <summary>
/// Type of job in the job queue system
/// </summary>
public enum JobType
{
/// <summary>
/// Standard backtest job
/// </summary>
Backtest,
/// <summary>
/// Genetic algorithm backtest job
/// </summary>
GeneticBacktest
}
}