Start pulling AI out of the UI and into the background service
This commit is contained in:
@@ -3,7 +3,8 @@ namespace Entities {
|
||||
class loginSession {
|
||||
public string UserName { get; set; } = "";
|
||||
public float Money { get; set; } = 0;
|
||||
public List<PurchasedStock> TrackedStocks { get; set; } = new List<PurchasedStock>();
|
||||
public List<Stock> TrackedStocks { get; set; } = new List<Stock>();
|
||||
public List<PurchasedStock> TradeHistory { get; set; } = new List<PurchasedStock>();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,10 +2,9 @@ namespace Entities {
|
||||
|
||||
class PurchasedStock {
|
||||
public string Symbol { get; set; } = "";
|
||||
public float PurchasePrice { get; set; } = 0;
|
||||
public float Quantity { get; set; } = 0;
|
||||
public DateTime PurchaseDate { get; set; } = DateTime.Now;
|
||||
public int PredictedMovement { get; set; } = 0;
|
||||
public float PurchasePrice { get; set; } = 0;
|
||||
public float SellPrice { get; set; } = 0;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Entities {
|
||||
|
||||
class Stock {
|
||||
public string Symbol { get; set; } = "";
|
||||
public float Score { get; set; } = 0;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user