diff --git a/src/trading/journal.py b/src/trading/journal.py index 3aaac27..0ebd772 100644 --- a/src/trading/journal.py +++ b/src/trading/journal.py @@ -545,6 +545,10 @@ def journal_menu(): continue if direction == "2": # Sell order + shares = get_user_input("Enter number of shares to sell:", int) + if shares is None: + continue + exit_price = get_user_input("Enter exit price:", float) if exit_price is None: continue