├── .idea ├── .gitignore ├── dataSources.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── market_direction_prediction.iml ├── misc.xml ├── modules.xml ├── other.xml └── vcs.xml ├── ML_FinalProject_model.ipynb ├── Market_depth_trend_prediction_model.py ├── README.md ├── Requirements.txt ├── save_marketdepth_as_sql.py └── trade_csv.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/market_direction_prediction.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/market_direction_prediction.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ML_FinalProject_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/ML_FinalProject_model.ipynb -------------------------------------------------------------------------------- /Market_depth_trend_prediction_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/Market_depth_trend_prediction_model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/README.md -------------------------------------------------------------------------------- /Requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/Requirements.txt -------------------------------------------------------------------------------- /save_marketdepth_as_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/save_marketdepth_as_sql.py -------------------------------------------------------------------------------- /trade_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spawnaga/market_direction_prediction/HEAD/trade_csv.py --------------------------------------------------------------------------------