Create and run an TradingAlgorithm in memory.
(self, **overrides)
| 2058 | return algo_class(**self.make_algo_kwargs(**overrides)) |
| 2059 | |
| 2060 | def run_algorithm(self, **overrides): |
| 2061 | """ |
| 2062 | Create and run an TradingAlgorithm in memory. |
| 2063 | """ |
| 2064 | return self.make_algo(**overrides).run() |
| 2065 | |
| 2066 | |
| 2067 | class WithWerror(object): |