Add net Pnl in db

This commit is contained in:
2025-09-28 22:18:58 +07:00
parent 6267dad8fa
commit f041c1e8e8
28 changed files with 3095 additions and 54 deletions

View File

@@ -16,6 +16,7 @@ namespace Managing.Domain.Bots
public int TradeWins { get; set; }
public int TradeLosses { get; set; }
public decimal Pnl { get; set; }
public decimal NetPnL { get; set; }
public decimal Roi { get; set; }
public decimal Volume { get; set; }
public decimal Fees { get; set; }

View File

@@ -50,4 +50,7 @@ public class AgentSummary
[Id(14)]
public decimal TotalFees { get; set; }
[Id(15)]
public decimal NetPnL { get; set; }
}