Median Price (medprice)
def medprice(high: NDArray[Shape["*", Float]], low: NDArray[Shape["*", Float]]) -> NDArray[Shape["*"], Float]:
"""
Median Price
Inputs: high, low
Options:
Outputs: medprice
"""
passThe Median Price indicator requires 2 input and 0 option parameters.
This indicator returns 1 outputs
Inputs
high- anumpy.arrayofnumpy.float64low- anumpy.arrayofnumpy.float64
Options
No option
Outputs
medprice