Indicators
Indicators
Typical Price (typprice)

Typical Price (typprice)

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

The Typical Price indicator requires 3 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
  • close - a numpy.array of numpy.float64

Options

No option

Outputs

  • typprice