├── .DS_Store ├── Datasets ├── MRF_sim.csv └── finance.csv ├── LICENSE.txt └── TXT.rtf ├── MacroRandomForest.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── MacroRandomForest ├── All_predictors.ipynb ├── Financial-Trading.ipynb ├── MRF.py ├── One-Step-Macro-Forecasting copy.ipynb ├── One-Step-Macro-Forecasting.ipynb ├── README.md ├── Simple-One-Step-Forecasting.ipynb ├── __init__.py └── __pycache__ │ ├── MRF.cpython-310.pyc │ ├── MRF.cpython-311.pyc │ └── MRF.cpython-38.pyc ├── README.md ├── __pycache__ ├── MRF.cpython-38.pyc ├── MRF_2.cpython-38.pyc ├── MRF_non_random.cpython-38.pyc └── MRF_random.cpython-38.pyc ├── dist ├── MacroRandomForest-1.0.5-py3-none-any.whl └── MacroRandomForest-1.0.5.tar.gz ├── setup.cfg └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/.DS_Store -------------------------------------------------------------------------------- /Datasets/MRF_sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/Datasets/MRF_sim.csv -------------------------------------------------------------------------------- /Datasets/finance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/Datasets/finance.csv -------------------------------------------------------------------------------- /LICENSE.txt/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/LICENSE.txt/TXT.rtf -------------------------------------------------------------------------------- /MacroRandomForest.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest.egg-info/PKG-INFO -------------------------------------------------------------------------------- /MacroRandomForest.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /MacroRandomForest.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MacroRandomForest.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest.egg-info/requires.txt -------------------------------------------------------------------------------- /MacroRandomForest.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | MacroRandomForest 2 | -------------------------------------------------------------------------------- /MacroRandomForest/All_predictors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/All_predictors.ipynb -------------------------------------------------------------------------------- /MacroRandomForest/Financial-Trading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/Financial-Trading.ipynb -------------------------------------------------------------------------------- /MacroRandomForest/MRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/MRF.py -------------------------------------------------------------------------------- /MacroRandomForest/One-Step-Macro-Forecasting copy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/One-Step-Macro-Forecasting copy.ipynb -------------------------------------------------------------------------------- /MacroRandomForest/One-Step-Macro-Forecasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/One-Step-Macro-Forecasting.ipynb -------------------------------------------------------------------------------- /MacroRandomForest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/README.md -------------------------------------------------------------------------------- /MacroRandomForest/Simple-One-Step-Forecasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/Simple-One-Step-Forecasting.ipynb -------------------------------------------------------------------------------- /MacroRandomForest/__init__.py: -------------------------------------------------------------------------------- 1 | from .MRF import * 2 | -------------------------------------------------------------------------------- /MacroRandomForest/__pycache__/MRF.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/__pycache__/MRF.cpython-310.pyc -------------------------------------------------------------------------------- /MacroRandomForest/__pycache__/MRF.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/__pycache__/MRF.cpython-311.pyc -------------------------------------------------------------------------------- /MacroRandomForest/__pycache__/MRF.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/MacroRandomForest/__pycache__/MRF.cpython-38.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/MRF.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/__pycache__/MRF.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/MRF_2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/__pycache__/MRF_2.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/MRF_non_random.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/__pycache__/MRF_non_random.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/MRF_random.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/__pycache__/MRF_random.cpython-38.pyc -------------------------------------------------------------------------------- /dist/MacroRandomForest-1.0.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/dist/MacroRandomForest-1.0.5-py3-none-any.whl -------------------------------------------------------------------------------- /dist/MacroRandomForest-1.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/dist/MacroRandomForest-1.0.5.tar.gz -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanLucas3/MacroRandomForest/HEAD/setup.py --------------------------------------------------------------------------------