Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-08-05 10:05:20 +02:00
parent 61f1e59964
commit f96ed670ca
239 changed files with 23858 additions and 730 deletions
+18
View File
@@ -0,0 +1,18 @@
namespace TradingBot.Models;
public class TradingSignal
{
public string Symbol { get; set; } = string.Empty;
public SignalType Type { get; set; }
public decimal Price { get; set; }
public decimal Confidence { get; set; } // 0-100 confidence level
public string Reason { get; set; } = string.Empty;
public DateTime Timestamp { get; set; }
}
public enum SignalType
{
Buy,
Sell,
Hold
}