diff --git a/zipline/pipeline/graph.py b/zipline/pipeline/graph.py index e18c3602..9ff09d45 100644 --- a/zipline/pipeline/graph.py +++ b/zipline/pipeline/graph.py @@ -136,7 +136,12 @@ class ExecutionPlan(TermGraph): terms : dict A dict mapping names to final output terms. all_dates : pd.DatetimeIndex - The dates fo + An index of all known trading days for which ``terms`` will be + computed. + start_date : pd.Timestamp + The first date for which output is requested for ``terms``. + end_date : pd.Timestamp + The last date for which output is requested for ``terms``. Attributes ---------- @@ -282,9 +287,6 @@ class ExecutionPlan(TermGraph): """ A dict mapping `term` -> `# of extra rows to load/compute of `term`. - This is always the maximum number of extra **input** rows required by - any Filter/Factor for which `term` is an input. - Notes ---- This value depends on the other terms in the graph that require `term`