From dcfc657ced087ebb2784c4ec12cb66b73db35c2d Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Mon, 10 Feb 2025 19:05:29 -0800 Subject: [PATCH] fix: Remove duplicate shares input in journal_menu function --- src/trading/journal.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/trading/journal.py b/src/trading/journal.py index 4598d69..3aaac27 100644 --- a/src/trading/journal.py +++ b/src/trading/journal.py @@ -544,10 +544,6 @@ def journal_menu(): print("Invalid direction") continue - shares = get_user_input("Enter number of shares:", int) - if shares is None: - continue - if direction == "2": # Sell order exit_price = get_user_input("Enter exit price:", float) if exit_price is None: