feat: add TradeContext, Subcategory and LastAnalyzedAt

This commit is contained in:
Richard
2026-07-05 18:56:18 +02:00
parent 8f6bce23f3
commit c38b4d498f
9 changed files with 1185 additions and 2 deletions
@@ -91,5 +91,9 @@ public class Trade
// ── Navigation ────────────────────────────────────────────────────────
public Trader Trader { get; set; } = null!;
public MarketOutcome? MarketOutcome { get; set; }
/// <summary>Analytics context containing high-resolution price data and slippage (if collected).</summary>
public TradeContext? Context { get; set; }
public Market? DbMarket { get; set; }
}