Indicators 文档
指标列表
Inside Bar (insidebar)

Inside Bar (insidebar)

def insidebar(open: NDArray[Shape["*", Float]], high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]], close: NDArray[Shape["*", Float]]) -> NDArray[Shape["*"], Float]:
    """
    Inside Bar
    Inputs: open, high, low, close
    Options: 
    Outputs: buy_sell_signal
    """
    pass

Inside Bar 指标需要 4 个输入参数和 0 个选项参数。

该指标返回 1 个输出

输入

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

选项

无选项

输出

  • buy_sell_signal