├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── exHierarchy.JPG ├── htsprophet ├── __init__.py ├── fitForecast.py ├── hts.py ├── htsPlot.py ├── runHTS.py └── tests │ ├── __init__.py │ └── testHTS.py ├── instructional ├── Readme.md ├── orgDJIA.py └── predDJIA.py ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- 1 | # Use CRLF line endings as default 2 | *.py text eol=crlf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/README.md -------------------------------------------------------------------------------- /exHierarchy.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/exHierarchy.JPG -------------------------------------------------------------------------------- /htsprophet/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htsprophet/fitForecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/htsprophet/fitForecast.py -------------------------------------------------------------------------------- /htsprophet/hts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/htsprophet/hts.py -------------------------------------------------------------------------------- /htsprophet/htsPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/htsprophet/htsPlot.py -------------------------------------------------------------------------------- /htsprophet/runHTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/htsprophet/runHTS.py -------------------------------------------------------------------------------- /htsprophet/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /htsprophet/tests/testHTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/htsprophet/tests/testHTS.py -------------------------------------------------------------------------------- /instructional/Readme.md: -------------------------------------------------------------------------------- 1 | See Redfin Blog Post 2 | -------------------------------------------------------------------------------- /instructional/orgDJIA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/instructional/orgDJIA.py -------------------------------------------------------------------------------- /instructional/predDJIA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/instructional/predDJIA.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinRooney12/htsprophet/HEAD/setup.py --------------------------------------------------------------------------------