Indicators
Indicators
Median Price (medprice)

Median Price (medprice)

def medprice(high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]]) -> NDArray[Shape["*"], Float]:
    """
    Median Price
    Inputs: high, low
    Options: 
    Outputs: medprice
    """
    pass

The Median Price indicator requires 2 input and 0 option parameters.

This indicator returns 1 outputs

Inputs

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

Options

No option

Outputs

  • medprice