diff --git a/docs/source/beginner-tutorial.rst b/docs/source/beginner-tutorial.rst index 7c45efe4..63b901a5 100644 --- a/docs/source/beginner-tutorial.rst +++ b/docs/source/beginner-tutorial.rst @@ -30,7 +30,10 @@ instructions `__ 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.