Closed jupiterMJM closed 10 months ago
According to the readme, there should be a PVT indicator proposed in talib. However, i can't find it anywhere in this module....
I don't think we have PVT implemented, where does it say we do?
You can build it pretty easy, something like:
def PVT(c, v): return np.cumsum(v[1:] * np.diff(c) / c[:-1])
According to the readme, there should be a PVT indicator proposed in talib. However, i can't find it anywhere in this module....