diff --git a/backend/services/database.py b/backend/services/database.py index 300e583..dea1dd0 100644 --- a/backend/services/database.py +++ b/backend/services/database.py @@ -205,6 +205,8 @@ def init_db(): ("trade_score", "REAL"), ("matched_profile", "TEXT"), ("last_seen_at", "TEXT"), + ("pnl_pct", "REAL"), + ("capital_invested", "REAL"), ]: try: c.execute(f"ALTER TABLE trade_entry_prices ADD COLUMN {col} {definition}")