├── .github ├── CONTRIBUTING.md ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.rst ├── alphapy ├── .DS_Store ├── __init__.py ├── __main__.py ├── alias.py ├── analysis.py ├── calendrical.py ├── data.py ├── estimators.py ├── features.py ├── frame.py ├── globals.py ├── group.py ├── market_flow.py ├── model.py ├── optimize.py ├── plots.py ├── portfolio.py ├── space.py ├── sport_flow.py ├── system.py ├── transforms.py ├── utilities.py └── variables.py ├── docs ├── .DS_Store ├── Makefile ├── conf.py ├── index.rst ├── introduction │ ├── alphapy_pipeline.png │ ├── command.rst │ ├── install.rst │ ├── introduction.rst │ ├── quickstart.rst │ └── support.rst ├── make.bat ├── source │ ├── alphapy.rst │ └── modules.rst ├── tutorials │ ├── amzn.png │ ├── closer_market.yml │ ├── kaggle.png │ ├── kaggle.rst │ ├── market.rst │ ├── ncaa.csv │ ├── ncaab.rst │ ├── ncaab_model.yml │ ├── ncaab_roc_curve.png │ ├── ncaab_sport.yml │ ├── pyfolio.png │ ├── returns.png │ ├── rrover_calibration.png │ ├── rrover_learning_curve.png │ ├── rrover_market.yml │ ├── rrover_model.yml │ ├── rrover_roc_curve.png │ ├── system.rst │ ├── titanic.jpg │ └── titanic.yml └── user_guide │ ├── algos.yml │ ├── alphapy.log │ ├── amzn_daily.csv │ ├── amzn_intraday.csv │ ├── features.png │ ├── market.yml │ ├── market_flow.rst │ ├── market_model.yml │ ├── market_pipeline.png │ ├── model_best.png │ ├── model_blend.png │ ├── model_pipeline.png │ ├── ncaa.csv │ ├── pipelines.rst │ ├── plot_calibration.png │ ├── plot_confusion_matrix.png │ ├── plot_feature_importances.png │ ├── plot_learning_curve.png │ ├── plot_roc_curve.png │ ├── project.rst │ ├── sport.yml │ ├── sport_flow.rst │ ├── sport_model.yml │ ├── sports_pipeline.png │ ├── system.yml │ ├── system_pipeline.png │ └── titanic.yml ├── environment.yml ├── images ├── market_pipeline.png ├── model_pipeline.png ├── sports_pipeline.png └── system_pipeline.png ├── readthedocs.yml └── setup.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [ScottfreeLLC] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/README.rst -------------------------------------------------------------------------------- /alphapy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/.DS_Store -------------------------------------------------------------------------------- /alphapy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alphapy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/__main__.py -------------------------------------------------------------------------------- /alphapy/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/alias.py -------------------------------------------------------------------------------- /alphapy/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/analysis.py -------------------------------------------------------------------------------- /alphapy/calendrical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/calendrical.py -------------------------------------------------------------------------------- /alphapy/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/data.py -------------------------------------------------------------------------------- /alphapy/estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/estimators.py -------------------------------------------------------------------------------- /alphapy/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/features.py -------------------------------------------------------------------------------- /alphapy/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/frame.py -------------------------------------------------------------------------------- /alphapy/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/globals.py -------------------------------------------------------------------------------- /alphapy/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/group.py -------------------------------------------------------------------------------- /alphapy/market_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/market_flow.py -------------------------------------------------------------------------------- /alphapy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/model.py -------------------------------------------------------------------------------- /alphapy/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/optimize.py -------------------------------------------------------------------------------- /alphapy/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/plots.py -------------------------------------------------------------------------------- /alphapy/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/portfolio.py -------------------------------------------------------------------------------- /alphapy/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/space.py -------------------------------------------------------------------------------- /alphapy/sport_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/sport_flow.py -------------------------------------------------------------------------------- /alphapy/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/system.py -------------------------------------------------------------------------------- /alphapy/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/transforms.py -------------------------------------------------------------------------------- /alphapy/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/utilities.py -------------------------------------------------------------------------------- /alphapy/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/alphapy/variables.py -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction/alphapy_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/alphapy_pipeline.png -------------------------------------------------------------------------------- /docs/introduction/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/command.rst -------------------------------------------------------------------------------- /docs/introduction/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/install.rst -------------------------------------------------------------------------------- /docs/introduction/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/introduction.rst -------------------------------------------------------------------------------- /docs/introduction/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/quickstart.rst -------------------------------------------------------------------------------- /docs/introduction/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/introduction/support.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/alphapy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/source/alphapy.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/tutorials/amzn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/amzn.png -------------------------------------------------------------------------------- /docs/tutorials/closer_market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/closer_market.yml -------------------------------------------------------------------------------- /docs/tutorials/kaggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/kaggle.png -------------------------------------------------------------------------------- /docs/tutorials/kaggle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/kaggle.rst -------------------------------------------------------------------------------- /docs/tutorials/market.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/market.rst -------------------------------------------------------------------------------- /docs/tutorials/ncaa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/ncaa.csv -------------------------------------------------------------------------------- /docs/tutorials/ncaab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/ncaab.rst -------------------------------------------------------------------------------- /docs/tutorials/ncaab_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/ncaab_model.yml -------------------------------------------------------------------------------- /docs/tutorials/ncaab_roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/ncaab_roc_curve.png -------------------------------------------------------------------------------- /docs/tutorials/ncaab_sport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/ncaab_sport.yml -------------------------------------------------------------------------------- /docs/tutorials/pyfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/pyfolio.png -------------------------------------------------------------------------------- /docs/tutorials/returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/returns.png -------------------------------------------------------------------------------- /docs/tutorials/rrover_calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/rrover_calibration.png -------------------------------------------------------------------------------- /docs/tutorials/rrover_learning_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/rrover_learning_curve.png -------------------------------------------------------------------------------- /docs/tutorials/rrover_market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/rrover_market.yml -------------------------------------------------------------------------------- /docs/tutorials/rrover_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/rrover_model.yml -------------------------------------------------------------------------------- /docs/tutorials/rrover_roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/rrover_roc_curve.png -------------------------------------------------------------------------------- /docs/tutorials/system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/system.rst -------------------------------------------------------------------------------- /docs/tutorials/titanic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/titanic.jpg -------------------------------------------------------------------------------- /docs/tutorials/titanic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/tutorials/titanic.yml -------------------------------------------------------------------------------- /docs/user_guide/algos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/algos.yml -------------------------------------------------------------------------------- /docs/user_guide/alphapy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/alphapy.log -------------------------------------------------------------------------------- /docs/user_guide/amzn_daily.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/amzn_daily.csv -------------------------------------------------------------------------------- /docs/user_guide/amzn_intraday.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/amzn_intraday.csv -------------------------------------------------------------------------------- /docs/user_guide/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/features.png -------------------------------------------------------------------------------- /docs/user_guide/market.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/market.yml -------------------------------------------------------------------------------- /docs/user_guide/market_flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/market_flow.rst -------------------------------------------------------------------------------- /docs/user_guide/market_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/market_model.yml -------------------------------------------------------------------------------- /docs/user_guide/market_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/market_pipeline.png -------------------------------------------------------------------------------- /docs/user_guide/model_best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/model_best.png -------------------------------------------------------------------------------- /docs/user_guide/model_blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/model_blend.png -------------------------------------------------------------------------------- /docs/user_guide/model_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/model_pipeline.png -------------------------------------------------------------------------------- /docs/user_guide/ncaa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/ncaa.csv -------------------------------------------------------------------------------- /docs/user_guide/pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/pipelines.rst -------------------------------------------------------------------------------- /docs/user_guide/plot_calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/plot_calibration.png -------------------------------------------------------------------------------- /docs/user_guide/plot_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/plot_confusion_matrix.png -------------------------------------------------------------------------------- /docs/user_guide/plot_feature_importances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/plot_feature_importances.png -------------------------------------------------------------------------------- /docs/user_guide/plot_learning_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/plot_learning_curve.png -------------------------------------------------------------------------------- /docs/user_guide/plot_roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/plot_roc_curve.png -------------------------------------------------------------------------------- /docs/user_guide/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/project.rst -------------------------------------------------------------------------------- /docs/user_guide/sport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/sport.yml -------------------------------------------------------------------------------- /docs/user_guide/sport_flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/sport_flow.rst -------------------------------------------------------------------------------- /docs/user_guide/sport_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/sport_model.yml -------------------------------------------------------------------------------- /docs/user_guide/sports_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/sports_pipeline.png -------------------------------------------------------------------------------- /docs/user_guide/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/system.yml -------------------------------------------------------------------------------- /docs/user_guide/system_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/system_pipeline.png -------------------------------------------------------------------------------- /docs/user_guide/titanic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/docs/user_guide/titanic.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/environment.yml -------------------------------------------------------------------------------- /images/market_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/images/market_pipeline.png -------------------------------------------------------------------------------- /images/model_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/images/model_pipeline.png -------------------------------------------------------------------------------- /images/sports_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/images/sports_pipeline.png -------------------------------------------------------------------------------- /images/system_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/images/system_pipeline.png -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottfreeLLC/AlphaPy/HEAD/setup.py --------------------------------------------------------------------------------