MAINT: Removes unused frame_count member from algorithm class.

frame_count is only over incremented, but never read or otherwise
used.
This commit is contained in:
Eddie Hebert
2013-03-19 20:36:53 -04:00
parent 0b6e4650d9
commit 1909a0576f
2 changed files with 1 additions and 4 deletions
-1
View File
@@ -83,7 +83,6 @@ class TradingAlgorithm(object):
How much capital to start with.
"""
self.order = None
self.frame_count = 0
self._portfolio = None
self.datetime = None