From b8c268652fb38af2fd3b69b1243cc951229568c9 Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Mon, 10 Feb 2025 23:15:24 -0800 Subject: [PATCH] fix: Import missing portfolio value functions from trading.journal --- src/streamlit_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index d7da758..135343f 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -6,7 +6,7 @@ from trading.journal import ( create_trades_table, get_open_trades, get_trade_history, add_trade, update_trade, delete_trade, TradeEntry, get_open_trades_summary, get_current_prices, generate_position_id, - get_position_summary + get_position_summary, get_latest_portfolio_value, update_portfolio_value ) from trading.position_calculator import PositionCalculator from screener.scanner_controller import run_technical_scanner