11 lines
306 B
C#
11 lines
306 B
C#
namespace TradingBot.Models;
|
|
|
|
public class BotStatus
|
|
{
|
|
public bool IsRunning { get; set; }
|
|
public DateTime? StartedAt { get; set; }
|
|
public decimal TotalProfit { get; set; }
|
|
public int TradesExecuted { get; set; }
|
|
public string CurrentStrategy { get; set; } = "Simple Moving Average";
|
|
}
|