From 96ec1fd639cf8310ffe978af441e8053cc796237 Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Fri, 20 May 2016 15:40:46 -0400 Subject: [PATCH] DOC: update bundle yahoo example --- docs/source/bundles.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/bundles.rst b/docs/source/bundles.rst index f6d5a32b..15779f48 100644 --- a/docs/source/bundles.rst +++ b/docs/source/bundles.rst @@ -164,7 +164,7 @@ create a bundle from a set of equities, add the following to your .. code-block:: python - from zipline.bundles import register, yahoo_equities + from zipline.data.bundles import register, yahoo_equities # these are the tickers you would like data for equities = { @@ -182,7 +182,7 @@ This may now be used like: .. code-block:: bash - $ zipline ingest my-yahoo-equities-bundle + $ zipline ingest -b my-yahoo-equities-bundle $ zipline run -f algo.py --bundle my-yahoo-equities-bundle