├── .gitignore ├── .vscode └── settings.json ├── DAT_XLSX_EURUSD_M1_201708.xlsx ├── IQOption_model.h5 ├── QMatplotlib.py ├── README.md ├── constants.py ├── doc └── INFO.md ├── getBalanceId.py ├── iqoption.py ├── main.py ├── martingale.py ├── model.py ├── neuralnetwork.py ├── pandasmanager.py ├── requirements.txt └── userdata-sample.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.idea/ 3 | 4 | *.pyc 5 | 6 | userdata.py 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.formatting.provider": "yapf" 3 | } -------------------------------------------------------------------------------- /DAT_XLSX_EURUSD_M1_201708.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/DAT_XLSX_EURUSD_M1_201708.xlsx -------------------------------------------------------------------------------- /IQOption_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/IQOption_model.h5 -------------------------------------------------------------------------------- /QMatplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/QMatplotlib.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/README.md -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/constants.py -------------------------------------------------------------------------------- /doc/INFO.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /getBalanceId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/getBalanceId.py -------------------------------------------------------------------------------- /iqoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/iqoption.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/main.py -------------------------------------------------------------------------------- /martingale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/martingale.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/model.py -------------------------------------------------------------------------------- /neuralnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/neuralnetwork.py -------------------------------------------------------------------------------- /pandasmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/pandasmanager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/requirements.txt -------------------------------------------------------------------------------- /userdata-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samchin89/IQOPTION-ML-TRADER/HEAD/userdata-sample.py --------------------------------------------------------------------------------