├── .gitignore ├── .idea └── vcs.xml ├── 01_data └── data_stocks.zip ├── 02_code └── stockprediction.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianheinz/stockprediction/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianheinz/stockprediction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /01_data/data_stocks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianheinz/stockprediction/HEAD/01_data/data_stocks.zip -------------------------------------------------------------------------------- /02_code/stockprediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianheinz/stockprediction/HEAD/02_code/stockprediction.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianheinz/stockprediction/HEAD/README.md --------------------------------------------------------------------------------