gitextract_uz7e5vob/ ├── .github/ │ └── workflows/ │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── compare.md ├── deprecated/ │ ├── demo_ta1.py │ ├── demo_ta2.py │ ├── helper.py │ ├── pandas_.py │ └── wrapper.py ├── docs/ │ ├── index.md │ ├── ta/ │ │ ├── index.md │ │ ├── momentum.md │ │ ├── operators.md │ │ ├── overlap.md │ │ ├── price.md │ │ ├── statistic.md │ │ ├── transform.md │ │ ├── volatility.md │ │ └── volume.md │ ├── talib/ │ │ └── index.md │ ├── tdx/ │ │ ├── arithmetic.md │ │ ├── choice.md │ │ ├── energy.md │ │ ├── logical.md │ │ ├── moving_average.md │ │ ├── over_bought_over_sold.md │ │ ├── pattern.md │ │ ├── pattern_feature.md │ │ ├── pressure_support.md │ │ ├── reference.md │ │ ├── statistic.md │ │ ├── times.md │ │ ├── trend.md │ │ ├── trend_feature.md │ │ └── volume.md │ └── wq/ │ ├── arithmetic.md │ ├── cross_sectional.md │ ├── half_life.md │ ├── logical.md │ ├── preprocess.md │ ├── time_series.md │ ├── transformational.md │ └── vector.md ├── examples/ │ ├── alpha101.py │ └── demo_ta3.py ├── mkdocs.yml ├── nan_to_null.md ├── point_in_time.md ├── polars_ta/ │ ├── __init__.py │ ├── _version.py │ ├── candles/ │ │ ├── __init__.py │ │ ├── cdl1.py │ │ ├── cdl1_limit.py │ │ └── cdl2.py │ ├── labels/ │ │ ├── __init__.py │ │ ├── _nb.py │ │ └── future.py │ ├── noise.py │ ├── performance/ │ │ ├── __init__.py │ │ ├── drawdown.py │ │ └── returns.py │ ├── prefix/ │ │ ├── __init__.py │ │ ├── cdl.py │ │ ├── labels.py │ │ ├── reports.py │ │ ├── ta.py │ │ ├── talib.py │ │ ├── tdx.py │ │ ├── vec.py │ │ └── wq.py │ ├── reports/ │ │ ├── __init__.py │ │ └── cicc.py │ ├── ta/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── momentum.py │ │ ├── operators.py │ │ ├── overlap.py │ │ ├── price.py │ │ ├── statistic.py │ │ ├── transform.py │ │ ├── volatility.py │ │ └── volume.py │ ├── talib/ │ │ ├── README.md │ │ └── __init__.py │ ├── tdx/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── _chip.py │ │ ├── _nb.py │ │ ├── _slow.py │ │ ├── arithmetic.py │ │ ├── choice.py │ │ ├── energy.py │ │ ├── logical.py │ │ ├── moving_average.py │ │ ├── over_bought_over_sold.py │ │ ├── pattern.py │ │ ├── pattern_feature.py │ │ ├── pressure_support.py │ │ ├── reference.py │ │ ├── statistic.py │ │ ├── times.py │ │ ├── trend.py │ │ ├── trend_feature.py │ │ └── volume.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── factor.py │ │ ├── functions.py │ │ ├── numba_.py │ │ ├── pit.py │ │ └── withs.py │ └── wq/ │ ├── __init__.py │ ├── _nb.py │ ├── _slow.py │ ├── arithmetic.py │ ├── cross_sectional.py │ ├── half_life.py │ ├── logical.py │ ├── preprocess.py │ ├── time_series.py │ ├── transformational.py │ └── vector.py ├── prompt.txt ├── pyproject.toml ├── requirements-docs.txt ├── requirements.txt ├── setup.py ├── tests/ │ ├── numba_test.py │ ├── pit_test.py │ ├── ta/ │ │ ├── test_momentum.py │ │ ├── test_operators.py │ │ ├── test_overlap.py │ │ ├── test_statistic.py │ │ ├── test_volatility.py │ │ └── test_volume.py │ ├── tdx/ │ │ ├── chip_test.py │ │ ├── test_reference.py │ │ └── test_statistic.py │ └── wq/ │ ├── test_arithmetic.py │ └── test_time_series.py ├── thinking_about_TA.md └── tools/ ├── README.md ├── codegen_talib.py ├── prefix.py ├── prefix_ta.py ├── prefix_talib.py ├── prefix_tdx.py ├── prefix_vec.py └── prompt.py