Skip to content

Commit

Permalink
Merge pull request #1638 from luca-s/IchimokuKinkoHyo_fix
Browse files Browse the repository at this point in the history
BUG: IchimokuKinkoHyo techinical factor has wrong default inputs
  • Loading branch information
richafrank authored Jan 6, 2017
2 parents 8ef2279 + 126d4aa commit 2259297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zipline/pipeline/factors/technical.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2259297

Please sign in to comment.