From b5ce101f5a614838c7f688e04df962fd2d98b90a Mon Sep 17 00:00:00 2001 From: Luca Date: Fri, 6 Jan 2017 16:06:05 +0100 Subject: [PATCH] BUG: IchimokuKinkoHyo techinical factor has wrong default inputs --- zipline/pipeline/factors/technical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/pipeline/factors/technical.py b/zipline/pipeline/factors/technical.py index 3e9278e6..0700677d 100644 --- a/zipline/pipeline/factors/technical.py +++ b/zipline/pipeline/factors/technical.py @@ -598,7 +598,7 @@ class IchimokuKinkoHyo(CustomFactor): 'kijun_sen_length': 26, 'chikou_span_length': 26, } - inputs = USEquityPricing.high, USEquityPricing.close + inputs = (USEquityPricing.high, USEquityPricing.low, USEquityPricing.close) outputs = ( 'tenkan_sen', 'kijun_sen',