gitextract_70ipxapd/ ├── AUTHORS ├── CHANGELOG ├── CITATION.cff ├── COPYRIGHT ├── DEVELOPMENT ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── abstract.md │ ├── doc_index.md │ ├── func.md │ ├── func_groups/ │ │ ├── cycle_indicators.md │ │ ├── math_operators.md │ │ ├── math_transform.md │ │ ├── momentum_indicators.md │ │ ├── overlap_studies.md │ │ ├── pattern_recognition.md │ │ ├── price_transform.md │ │ ├── statistic_functions.md │ │ ├── volatility_indicators.md │ │ └── volume_indicators.md │ ├── funcs.md │ ├── generate_html_pages.py │ ├── index.md │ └── install.md ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── setup.py ├── talib/ │ ├── __init__.py │ ├── _abstract.pxi │ ├── _common.pxi │ ├── _func.pxi │ ├── _stream.pxi │ ├── _ta_lib.c │ ├── _ta_lib.pxd │ ├── _ta_lib.pyi │ ├── _ta_lib.pyx │ ├── abstract.py │ ├── abstract.pyi │ ├── common.pxd │ ├── deprecated.py │ ├── py.typed │ └── stream.py ├── tests/ │ ├── conftest.py │ ├── test_abstract.py │ ├── test_func.py │ ├── test_pandas.py │ ├── test_polars.py │ └── test_stream.py └── tools/ ├── build_talib_linux.sh ├── build_talib_macos.sh ├── build_talib_windows.cmd ├── example.py ├── generate_abstract_stub.py ├── generate_func.py ├── generate_stream.py ├── perf_talib.py └── threads_talib.py