From 87a40491d1f7decb76367d6b9606e46032e644fb Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Mon, 22 Aug 2016 13:29:16 -0400 Subject: [PATCH] DOC: Updated more docs to remove --symbols, which was removed --- README.rst | 2 +- docs/source/beginner-tutorial.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 500bf29d..ab3794ff 100644 --- a/README.rst +++ b/README.rst @@ -161,7 +161,7 @@ line, run: .. code:: bash - zipline run -f dual_moving_average.py --symbols AAPL --start 2011-1-1 --end 2012-1-1 -o dma.pickle + zipline run -f dual_moving_average.py --start 2011-1-1 --end 2012-1-1 -o dma.pickle This will download the AAPL price data from Yahoo! Finance in the specified time range and stream it through the algorithm and save the diff --git a/docs/source/beginner-tutorial.rst b/docs/source/beginner-tutorial.rst index 66d22f31..5c2c3d68 100644 --- a/docs/source/beginner-tutorial.rst +++ b/docs/source/beginner-tutorial.rst @@ -428,7 +428,7 @@ magic. .. code-block:: python - %%zipline --start 2000-1-1 --end 2014-1-1 --symbols AAPL + %%zipline --start 2000-1-1 --end 2014-1-1 from zipline.api import symbol, order, record def initialize(context):