-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make the UI a little cleaner #4405
Conversation
@@ -44,6 +44,10 @@ | |||
|
|||
logger = logging.getLogger(__name__) | |||
|
|||
no_ticker_message = ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't the cmds under this menu also be grey if ticker is not loaded?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the reason they aren't is because they can all be run with cmd -t
@@ -129,46 +129,48 @@ def print_help(self): | |||
stock_str = f"{s_intraday} {self.ticker}" | |||
|
|||
mt = MenuText("stocks/ta/", 90) | |||
mt.add_param("_ticker", stock_str) | |||
mt.add_param( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we also have the load
cmd here? the functionality is there tho
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes i should
* Make the UI a little cleaner * ta load --------- Co-authored-by: Henrique Joaquim <h.joaquim@campus.fct.unl.pt>
Addresses #4399