BUG: Fixes incorrect value assignment in perf period

This commit is contained in:
jfkirk
2016-01-19 16:11:22 -05:00
parent 3b76981270
commit b8b7049f39
+1 -1
View File
@@ -457,7 +457,7 @@ class PerformancePeriod(object):
self.ending_cash + self.ending_value)
account.total_positions_value = \
getattr(self, 'total_positions_value', self.ending_value)
account.total_positions_value = \
account.total_positions_exposure = \
getattr(self, 'total_positions_exposure', self.ending_exposure)
account.regt_equity = \
getattr(self, 'regt_equity', self.ending_cash)