Merge pull request #1249 from JimStearns206/update-tutorial-doc

DOC: Fix bullet list format (minor).
This commit is contained in:
Joe Jevnik
2016-06-03 14:11:04 -04:00
+4 -1
View File
@@ -30,7 +30,10 @@ instructions <https://github.com/quantopian/zipline#installation>`__ if
you haven't set up zipline yet.
Every ``zipline`` algorithm consists of two functions you have to
define: \* ``initialize(context)`` \* ``handle_data(context, data)``
define:
* ``initialize(context)``
* ``handle_data(context, data)``
Before the start of the algorithm, ``zipline`` calls the
``initialize()`` function and passes in a ``context`` variable.