Add backtest light
This commit is contained in:
19
src/Managing.Domain/Backtests/LightBacktest.cs
Normal file
19
src/Managing.Domain/Backtests/LightBacktest.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Managing.Domain.Bots;
|
||||
|
||||
namespace Managing.Domain.Backtests;
|
||||
|
||||
public class LightBacktest
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public TradingBotConfig Config { get; set; } = new();
|
||||
public decimal FinalPnl { get; set; }
|
||||
public int WinRate { get; set; }
|
||||
public decimal GrowthPercentage { get; set; }
|
||||
public decimal HodlPercentage { get; set; }
|
||||
public DateTime StartDate { get; set; }
|
||||
public DateTime EndDate { get; set; }
|
||||
public decimal? MaxDrawdown { get; set; }
|
||||
public decimal Fees { get; set; }
|
||||
public double? SharpeRatio { get; set; }
|
||||
public double Score { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user