diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py index 3eb3355a..9fad92fc 100644 --- a/zipline/finance/performance.py +++ b/zipline/finance/performance.py @@ -410,9 +410,6 @@ class Position(object): self.cost_basis = total_cost / total_shares self.amount = self.amount + txn.amount - def currentValue(self): - return self.amount * self.last_sale_price - def __repr__(self): template = "sid: {sid}, amount: {amount}, cost_basis: {cost_basis}, \ last_sale_price: {last_sale_price}"