├── LICENSE.txt ├── README.md ├── backtesting.py ├── current_data.py ├── download_historical_prices.py ├── forward_sample.csv ├── keystats.csv ├── parsing_keystats.py ├── requirements.txt ├── sp500_index.csv ├── stock_prediction.py ├── stock_prices.csv ├── tests ├── __init__.py ├── test_datasets.py ├── test_utils.py └── test_variables.py └── utils.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/README.md -------------------------------------------------------------------------------- /backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/backtesting.py -------------------------------------------------------------------------------- /current_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/current_data.py -------------------------------------------------------------------------------- /download_historical_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/download_historical_prices.py -------------------------------------------------------------------------------- /forward_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/forward_sample.csv -------------------------------------------------------------------------------- /keystats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/keystats.csv -------------------------------------------------------------------------------- /parsing_keystats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/parsing_keystats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/requirements.txt -------------------------------------------------------------------------------- /sp500_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/sp500_index.csv -------------------------------------------------------------------------------- /stock_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/stock_prediction.py -------------------------------------------------------------------------------- /stock_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/stock_prices.csv -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/tests/test_datasets.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/tests/test_variables.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertmartin8/MachineLearningStocks/HEAD/utils.py --------------------------------------------------------------------------------