├── LICENSE ├── README.md ├── backtesting ├── brain.py ├── chart.py ├── chart_all.py ├── heart.py ├── statistics.py └── update_chart_files.py ├── compile.py ├── data_processing.py ├── dist_acc_graph.py ├── getdata.py ├── new_preprocess.py ├── predictions_graph.py ├── realtime ├── BRAIN.py ├── GENERAL.py └── ORDERS.py ├── utils.py └── vars.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/README.md -------------------------------------------------------------------------------- /backtesting/brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/brain.py -------------------------------------------------------------------------------- /backtesting/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/chart.py -------------------------------------------------------------------------------- /backtesting/chart_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/chart_all.py -------------------------------------------------------------------------------- /backtesting/heart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/heart.py -------------------------------------------------------------------------------- /backtesting/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/statistics.py -------------------------------------------------------------------------------- /backtesting/update_chart_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/backtesting/update_chart_files.py -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/compile.py -------------------------------------------------------------------------------- /data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/data_processing.py -------------------------------------------------------------------------------- /dist_acc_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/dist_acc_graph.py -------------------------------------------------------------------------------- /getdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/getdata.py -------------------------------------------------------------------------------- /new_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/new_preprocess.py -------------------------------------------------------------------------------- /predictions_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/predictions_graph.py -------------------------------------------------------------------------------- /realtime/BRAIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/realtime/BRAIN.py -------------------------------------------------------------------------------- /realtime/GENERAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/realtime/GENERAL.py -------------------------------------------------------------------------------- /realtime/ORDERS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/realtime/ORDERS.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/utils.py -------------------------------------------------------------------------------- /vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojtke/crypto-algorithmic-trading/HEAD/vars.py --------------------------------------------------------------------------------