diff --git a/zipline/lines.py b/zipline/lines.py index d346fdb3..d696d97e 100644 --- a/zipline/lines.py +++ b/zipline/lines.py @@ -327,7 +327,11 @@ class SimulatedTrading(object): @property def is_success(self): - return self.sim.ready() and not self.sim.exception + # TODO: other assertions? + if self.sim.did_clean_shutdown(): + return True + else: + return False #-------------------------------- # Component property accessors