Make predictions based on owned stocks

This commit is contained in:
2026-03-08 19:58:26 -07:00
parent 04631398ed
commit ce4f9a197d
4 changed files with 79 additions and 59 deletions
+11
View File
@@ -0,0 +1,11 @@
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;
}
}