This commit is contained in:
David Brazda
2024-10-18 11:57:33 +02:00
parent 55e2a54ca1
commit a653135ea4
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='ttools',
version='0.2.1',
version='0.2.2',
packages=find_packages(),
install_requires=[
'vectorbtpro',

View File

@ -50,7 +50,8 @@ def vwap_cum(high, low, close, volume, group_lens):
cumulative anchored vwap indicator on HLCC4 price
"""
cu_vwap_ind = vbt.IF(
class_name='ttools:CUVWAP',
class_name='CUVWAP',
module_name='ttools',
input_names=['high', 'low', 'close', 'volume'],
param_names=['anchor'],
output_names=['vwap']