From 25cc65e3933cbe4b80d0bb9d636c4e74bcb3f0c4 Mon Sep 17 00:00:00 2001 From: Wilson Choi Date: Thu, 2 Jun 2016 16:07:41 -0700 Subject: [PATCH] DOC: add ingesting data ref to beginner tutorial --- docs/source/beginner-tutorial.rst | 14 ++++++++++++++ docs/source/bundles.rst | 2 ++ 2 files changed, 16 insertions(+) diff --git a/docs/source/beginner-tutorial.rst b/docs/source/beginner-tutorial.rst index d8c17302..44f61031 100644 --- a/docs/source/beginner-tutorial.rst +++ b/docs/source/beginner-tutorial.rst @@ -96,6 +96,20 @@ To now test this algorithm on financial data, ``zipline`` provides three interfaces: A command-line interface, ``IPython Notebook`` magic, and :func:`~zipline.run_algorithm`. +Ingesting Data +^^^^^^^^^^^^^^ +If you haven't ingest the data, run: + +.. code-block:: bash + + $ zipline ingest [-b ] + +where ```` is the name of the bundle to ingest, defaulting to +:ref:`quantopian-quandl `. + +you can check out the :ref:`ingesting data ` section for +more detail + Command line interface ^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/source/bundles.rst b/docs/source/bundles.rst index 15779f48..13fa72a8 100644 --- a/docs/source/bundles.rst +++ b/docs/source/bundles.rst @@ -37,6 +37,8 @@ bundle was ingested. We have run three different ingestions for so it just shows ```` instead. Finally, there is only one ingestion for ``quantopian-quandl``. +.. _ingesting-data: + Ingesting Data ~~~~~~~~~~~~~~