├── .gitignore ├── LICENSE ├── README.md ├── data └── sample.csv.zip ├── ml ├── chart.html └── ml.py ├── post3 └── runner.py ├── post4 └── create_OHLC.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/README.md -------------------------------------------------------------------------------- /data/sample.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/data/sample.csv.zip -------------------------------------------------------------------------------- /ml/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/ml/chart.html -------------------------------------------------------------------------------- /ml/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/ml/ml.py -------------------------------------------------------------------------------- /post3/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/post3/runner.py -------------------------------------------------------------------------------- /post4/create_OHLC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonromero/forex_algotrading/HEAD/post4/create_OHLC.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | v20 2 | pandas 3 | sklearn 4 | scipy 5 | pyyaml --------------------------------------------------------------------------------