8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531004c commit eaca138Copy full SHA for eaca138
lib/matplotlib/finance.py
@@ -854,10 +854,10 @@ def _missing(sequence, miss=-1):
854
"""
855
return np.where(np.array(sequence)==miss)[0]
856
857
- same_length = (len(opens) == len(highs)) and (len(opens) == len(lows)) and
+ same_length = (len(opens) == len(highs)) and (len(opens) == len(lows)) and\
858
(len(opens) == len(closes))
859
_missopens = _missing(opens)
860
- same_missing = (_missopens == _missing(highs).all() and (_missopens ==
+ same_missing = (_missopens == _missing(highs).all() and (_missopens ==\
861
_missing(lows)).all() and (_missopens == _missing(closes)).all()
862
863
if not (same_length and same_missing):
0 commit comments