Indicators 文档
指标列表
Williams Accumulation/Distribution (wad)

Williams Accumulation/Distribution (wad)

def wad(high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]], close: NDArray[Shape["*", Float]]) -> NDArray[Shape["*"], Float]:
    """
    Williams Accumulation/Distribution
    Inputs: high, low, close
    Options: 
    Outputs: wad
    """
    pass

Williams Accumulation/Distribution 指标需要 3 个输入参数和 0 个选项参数。

该指标返回 1 个输出

输入

  • high - a numpy.array of numpy.float64
  • low - a numpy.array of numpy.float64
  • close - a numpy.array of numpy.float64

选项

无选项

输出

  • wad