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
+11
View File
@@ -0,0 +1,11 @@
namespace TradingBot.Models;
public class TechnicalIndicators
{
public decimal RSI { get; set; }
public decimal MACD { get; set; }
public decimal Signal { get; set; }
public decimal Histogram { get; set; }
public decimal EMA12 { get; set; }
public decimal EMA26 { get; set; }
}