From 983d0e9829001c3cc2cbd6e60d654da1aee5b638 Mon Sep 17 00:00:00 2001 From: Ana Ruelas Date: Tue, 6 Dec 2016 11:35:42 -0500 Subject: [PATCH] DOCS: Minor (but build breaking) docstring fix --- zipline/pipeline/factors/technical.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/zipline/pipeline/factors/technical.py b/zipline/pipeline/factors/technical.py index c96a4fd1..3e9278e6 100644 --- a/zipline/pipeline/factors/technical.py +++ b/zipline/pipeline/factors/technical.py @@ -716,7 +716,7 @@ class MovingAverageConvergenceDivergenceSignal(CustomFactor): The window length for the "fast" EWMA. Default is 12. slow_period : int > 0, > fast_period, optional The window length for the "slow" EWMA. Default is 26. - signal_period' : int > 0, < fast_period, optional + signal_period : int > 0, < fast_period, optional The window length for the signal line. Default is 9. Notes @@ -786,14 +786,11 @@ class MovingAverageConvergenceDivergenceSignal(CustomFactor): class AnnualizedVolatility(CustomFactor): """ - Volatility + Volatility. The degree of variation of a series over time as measured by + the standard deviation of daily returns. https://en.wikipedia.org/wiki/Volatility_(finance) - The degree of variation of a series over time as measured by the standard - deviation of daily returns. - - **Default Inputs:** - :data:`zipline.pipeline.factors.Returns(window_length=2)` + **Default Inputs:** :data:`zipline.pipeline.factors.Returns(window_length=2)` # noqa Parameters ----------