From e15b6b04840f26568d72c23b23144e58522570b3 Mon Sep 17 00:00:00 2001 From: Warren O'Neill Date: Mon, 15 Jun 2015 11:31:50 +0200 Subject: [PATCH] DOC: removes suggested hourly data_frequency and changes minutely to minute in docstring --- zipline/algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/algorithm.py b/zipline/algorithm.py index 354a7fbe..5307cbee 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -129,7 +129,7 @@ class TradingAlgorithm(object): script : str Algoscript that contains initialize and handle_data function definition. - data_frequency : str (daily, hourly or minutely) + data_frequency : {'daily', 'minute'} The duration of the bars. capital_base : float How much capital to start with.