MAINT: Removes unused flag from algorithm class.

The `self.done` member of TradingAlgorithm is never used.
This commit is contained in:
Eddie Hebert
2013-03-19 19:50:40 -04:00
parent 3e65980bda
commit 0b6e4650d9
-1
View File
@@ -82,7 +82,6 @@ class TradingAlgorithm(object):
capital_base : float <default: 1.0e5>
How much capital to start with.
"""
self.done = False
self.order = None
self.frame_count = 0
self._portfolio = None