Skip to content

Commit

Permalink
✨ Remove "STOP" option from order type selection
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelGuillemet committed Feb 9, 2024
1 parent 7f63035 commit 2c3ebc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, master):
# Widgets
order_type_label = Label(self, text="Order Type:")
order_type_frame = Frame(self)
for order_type in ["MARKET", "LIMIT", "STOP"]:
for order_type in ["MARKET", "LIMIT"]:
Radiobutton(
order_type_frame,
text=order_type,
Expand Down

0 comments on commit 2c3ebc9

Please sign in to comment.