Skip to content

Commit

Permalink
DOC: update whatsnew
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Jevnik committed May 13, 2016
1 parent f79b07f commit fa15b49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion docs/source/whatsnew/1.0.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ Enhancements
``element_of`` is defined for all classifiers. The remaining methods are
only defined for strings. (:issue:`1174`)

* Added :class:`~zipline.pipeline.factors.BollingerBands` factor. This factor
implements the Bollinger Bands technical indicator:
https://en.wikipedia.org/wiki/Bollinger_Bands (:issue:`1199`).


Experimental Features
~~~~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -165,7 +169,10 @@ None
Documentation
~~~~~~~~~~~~~

None
* Updated documentation for the API methods (:issue:`1188`).

* Updated release process to mention that docs should be built with python 3
(:issue:`1188`).

Miscellaneous
~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion zipline/pipeline/factors/technical.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ def compute(self, today, assets, out, data, decay_rate):

class BollingerBands(CustomFactor):
"""
Bollinger Bands
Bollinger Bands technical indicator.
https://en.wikipedia.org/wiki/Bollinger_Bands
**Default Inputs:** :data:`zipline.pipeline.data.USEquityPricing.close`
Expand Down

0 comments on commit fa15b49

Please sign in to comment.