diff --git a/src/pages/journal/trading_journal_page.py b/src/pages/journal/trading_journal_page.py index e3b1fb8..c1a43e4 100644 --- a/src/pages/journal/trading_journal_page.py +++ b/src/pages/journal/trading_journal_page.py @@ -314,6 +314,6 @@ def trading_journal_page(): st.text(f"Strategy: {trade['strategy']}") if trade.get('notes'): st.text(f"Notes: {trade['notes']}") - st.text(f"Type: {'Sell Order' if is_sell else 'Buy/Exit'}") + st.text(f"Type: {'Sell Order' if is_sell else 'Buy'}") else: st.info("No trade history found")