mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-27 21:36:39 +08:00
DOC: Update whatsnew.
This commit is contained in:
@@ -45,6 +45,12 @@ Pipeline API
|
||||
.. autoclass:: zipline.pipeline.factors.RSI
|
||||
:members:
|
||||
|
||||
.. autoclass:: zipline.pipeline.factors.BusinessDaysUntilNextEarnings
|
||||
:members:
|
||||
|
||||
.. autoclass:: zipline.pipeline.factors.BusinessDaysSincePreviousEarnings
|
||||
:members:
|
||||
|
||||
.. autoclass:: zipline.pipeline.factors.SimpleMovingAverage
|
||||
:members:
|
||||
|
||||
@@ -58,6 +64,15 @@ Pipeline API
|
||||
:members: __and__, __or__
|
||||
:exclude-members: dtype
|
||||
|
||||
.. autoclass:: zipline.pipeline.data.EarningsCalendar
|
||||
:members: next_announcement, previous_announcement
|
||||
:undoc-members:
|
||||
|
||||
.. autoclass:: zipline.pipeline.data.USEquityPricing
|
||||
:members: open, high, low, close, volume
|
||||
:undoc-members:
|
||||
|
||||
|
||||
Asset Metadata
|
||||
~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
@@ -11,7 +11,12 @@ Development
|
||||
Highlights
|
||||
~~~~~~~~~~
|
||||
|
||||
None
|
||||
* Added a new :class:`~zipline.pipeline.data.EarningsCalendar` dataset
|
||||
for use in the Pipeline API. (:issue:`905`).
|
||||
|
||||
* :class:`~zipline.assets.assets.AssetFinder` speedups (:issue:`830` and
|
||||
:issue:`817`).
|
||||
|
||||
|
||||
Enhancements
|
||||
~~~~~~~~~~~~
|
||||
@@ -23,13 +28,30 @@ Enhancements
|
||||
passed to :class:`~zipline.algorithm.TradingAlgorithm` by the keyword argument
|
||||
``create_event_context`` (:issue:`828`).
|
||||
|
||||
* Added support for :class:`zipline.pipeline.factors.Factor` instances with
|
||||
``datetime64[ns]`` dtypes. (:issue:`905`)
|
||||
|
||||
* Added a new :class:`~zipline.pipeline.data.earnings.EarningsCalendar` dataset
|
||||
for use in the Pipeline API. This dataset provides an abstract interface for
|
||||
adding earnings announcement data to a new algorithm. A pandas-based
|
||||
reference implementation for this dataset can be found in
|
||||
:mod:`zipline.pipeline.loaders.earnings`, and an experimental blaze-based
|
||||
implementation can be found in
|
||||
:mod:`zipline.pipeline.loaders.blaze.earnings`. (:issue:`905`).
|
||||
|
||||
* Added new built-in factors,
|
||||
:class:`zipline.pipeline.factors.BusinessDaysUntilNextEarnings` and
|
||||
:class:`zipline.pipeline.factors.BusinessDaysSincePreviousEarnings`. These
|
||||
factors use the new ``EarningsCalendar`` dataset. (:issue:`905`).
|
||||
|
||||
* Added :meth:`~zipline.pipeline.factors.Factor.isnan`,
|
||||
:meth:`~zipline.pipeline.factors.Factor.notnan` and
|
||||
:meth:`~zipline.pipeline.factors.Factor.isfinite` methods to
|
||||
:class:`zipline.pipeline.factors.Factor` (:issue:`861`).
|
||||
|
||||
* Added :class:`zipline.pipeline.factors.Returns`, a built-in factor which
|
||||
calculates the percent change in close price over the given window_length.
|
||||
calculates the percent change in close price over the given
|
||||
window_length. (:issue:`884`).
|
||||
|
||||
Experimental Features
|
||||
~~~~~~~~~~~~~~~~~~~~~
|
||||
@@ -61,6 +83,10 @@ Performance
|
||||
:meth:`~zipline.assets.assets.AssetFinder.lookup_symbol` to these dictionaries
|
||||
to find matching equities (:issue:`830`).
|
||||
|
||||
* Improved performance of
|
||||
:meth:`~zipline.assets.assets.AssetFinder.lookup_symbol` by performing
|
||||
batched queries. (:issue:`817`).
|
||||
|
||||
Maintenance and Refactorings
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
Reference in New Issue
Block a user