From 7547ef535aa9fcb227fda4d7c1406b17022d8003 Mon Sep 17 00:00:00 2001 From: David Edwards Date: Mon, 2 Jun 2014 14:16:47 -0700 Subject: [PATCH] MAINT: Removed unused keyword arg Deleted keyword arg include_open_orders, it was left over from working on handling open orders. --- zipline/algorithm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zipline/algorithm.py b/zipline/algorithm.py index 79479337..e863e32d 100644 --- a/zipline/algorithm.py +++ b/zipline/algorithm.py @@ -706,8 +706,7 @@ class TradingAlgorithm(object): @api_method def order_target_value(self, sid, target, - limit_price=None, stop_price=None, - style=None, include_open_orders=False): + limit_price=None, stop_price=None, style=None): """ Place an order to adjust a position to a target value. If the position doesn't already exist, this is equivalent to placing a new