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 ~~~~~~~~~~~~~~