From a642a9aeeea0ac22474f45cf21cb384acaaf25dc Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 16 Sep 2016 16:50:10 -0400 Subject: [PATCH] MAINT: Remove unused method. Dividends are read from AdjustmentReader. --- zipline/algorithm.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/zipline/algorithm.py b/zipline/algorithm.py index 3b94ca3c..6afd664f 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -1631,13 +1631,6 @@ class TradingAlgorithm(object): dt = dt.astimezone(tz) return dt - def update_dividends(self, dividend_frame): - """ - Set DataFrame used to process dividends. DataFrame columns should - contain at least the entries in zp.DIVIDEND_FIELDS. - """ - self.perf_tracker.update_dividends(dividend_frame) - @api_method def set_slippage(self, slippage): """Set the slippage model for the simulation.