Esempio n. 1
0
 def call_regression(self, other_args: List[str]):
     """Process regression command"""
     regression_view.regression(other_args, self.ticker, self.stock,
                                regression_view.USER_INPUT)
Esempio n. 2
0
 def call_quadratic(self, other_args: List[str]):
     """Process quadratic command"""
     regression_view.regression(other_args, self.ticker, self.stock,
                                regression_view.QUADRATIC)
Esempio n. 3
0
 def call_cubic(self, other_args: List[str]):
     """Process cubic command"""
     regression_view.regression(other_args, self.ticker, self.stock,
                                regression_view.CUBIC)
Esempio n. 4
0
 def call_linear(self, other_args: List[str]):
     """Process linear command"""
     regression_view.regression(other_args, self.ticker, self.stock,
                                regression_view.LINEAR)