diff --git a/openbb_terminal/stocks/stocks_controller.py b/openbb_terminal/stocks/stocks_controller.py index 7431695b70ab..5e9c95577794 100644 --- a/openbb_terminal/stocks/stocks_controller.py +++ b/openbb_terminal/stocks/stocks_controller.py @@ -90,6 +90,10 @@ def __init__(self, queue: Optional[List[str]] = None): if session and get_current_user().preferences.USE_PROMPT_TOOLKIT: choices: dict = self.choices_default + choices["load"] = { + "--file": {c: None for c in self.USER_IMPORT_FILES}, + "-f": "--file", + } self.completer = NestedCompleter.from_nested_dict(choices) def print_help(self):