├── .devcontainer └── devcontainer.json ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── assets ├── PHANDAS.png └── PHANDAS2.png ├── docs ├── Makefile ├── conf.py ├── guide │ └── operators_guide.rst ├── index.rst ├── installation.rst ├── make.bat ├── mcp_setup.rst ├── quickstart.rst └── requirements.txt ├── examples ├── crypto_1d.csv ├── demo.ipynb ├── requirements.txt └── streamlit_app.py ├── phandas ├── __init__.py ├── backtest.py ├── core.py ├── data.py ├── mcp_server.py ├── operators.py ├── panel.py ├── plot.py ├── trader.py └── universe.py └── setup.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/README.md -------------------------------------------------------------------------------- /assets/PHANDAS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/assets/PHANDAS.png -------------------------------------------------------------------------------- /assets/PHANDAS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/assets/PHANDAS2.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/guide/operators_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/guide/operators_guide.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mcp_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/mcp_setup.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /examples/crypto_1d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/examples/crypto_1d.csv -------------------------------------------------------------------------------- /examples/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/examples/demo.ipynb -------------------------------------------------------------------------------- /examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/examples/requirements.txt -------------------------------------------------------------------------------- /examples/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/examples/streamlit_app.py -------------------------------------------------------------------------------- /phandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/__init__.py -------------------------------------------------------------------------------- /phandas/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/backtest.py -------------------------------------------------------------------------------- /phandas/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/core.py -------------------------------------------------------------------------------- /phandas/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/data.py -------------------------------------------------------------------------------- /phandas/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/mcp_server.py -------------------------------------------------------------------------------- /phandas/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/operators.py -------------------------------------------------------------------------------- /phandas/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/panel.py -------------------------------------------------------------------------------- /phandas/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/plot.py -------------------------------------------------------------------------------- /phandas/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/trader.py -------------------------------------------------------------------------------- /phandas/universe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/phandas/universe.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantbai/phandas/HEAD/setup.py --------------------------------------------------------------------------------