Merge pull request #1611 from quantopian/fix-buildbreaking-docstring

DOCS: Minor (but build breaking) docstring fix
This commit is contained in:
Ana Ruelas
2016-12-06 14:26:48 -05:00
committed by GitHub
+4 -7
View File
@@ -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
----------