diff --git a/zipline/algorithm.py b/zipline/algorithm.py index 0687808f..39436a23 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -1632,13 +1632,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.