Enhance UI, add AI integration, improve logging and database stats

This commit is contained in:
Richard
2026-07-04 21:11:31 +02:00
parent 7a44914d9d
commit d102af2965
57 changed files with 4025 additions and 229 deletions
@@ -66,6 +66,19 @@ public class Trade
/// <summary>Transaction hash (for blockchain-based platforms).</summary>
public string? TransactionHash { get; set; }
// ── Context Enrichment (AI Strategy Detection) ───────────
/// <summary>Market price 1 minute before trade execution.</summary>
[Column(TypeName = "decimal(18,4)")]
public decimal? PreTradePrice1m { get; set; }
/// <summary>Market price 1 minute after trade execution.</summary>
[Column(TypeName = "decimal(18,4)")]
public decimal? PostTradePrice1m { get; set; }
/// <summary>Indicates if high-res price context was fetched.</summary>
public bool IsContextEnriched { get; set; }
// ── Transient (not persisted) ──────────────────────────────────────────
/// <summary>