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
- anumpy.array
ofnumpy.float64
low
- anumpy.array
ofnumpy.float64
Options
No option
Outputs
medprice