def cci(self, n, array=False):
"""CCI??"""
result = talib.CCI(self.high, self.low, self.close, n)
if array:
return result
return result[-1]
# ----------------------------------------------------------------------
文章目录