16 lines
459 B
C#
16 lines
459 B
C#
public class AgentBalance
|
|
{
|
|
public string AgentName { get; set; }
|
|
public decimal TotalValue { get; set; }
|
|
public decimal TotalAccountUsdValue { get; set; }
|
|
public decimal BotsAllocationUsdValue { get; set; }
|
|
public decimal PnL { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public IList<PnLPoint> PnLHistory { get; set; }
|
|
}
|
|
|
|
public class PnLPoint
|
|
{
|
|
public DateTime Time { get; set; }
|
|
public decimal Value { get; set; }
|
|
} |