fix: Add shares input prompt for sell order in trading journal
This commit is contained in:
parent
dcfc657ced
commit
536622d1ca
@ -545,6 +545,10 @@ def journal_menu():
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if direction == "2": # Sell order
|
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)
|
exit_price = get_user_input("Enter exit price:", float)
|
||||||
if exit_price is None:
|
if exit_price is None:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user