├── .gitignore ├── README.md ├── docker-compose.yml ├── images ├── logo.jpg └── probs.png └── user_data ├── config.json ├── hyperopts ├── sample_hyperopt.py ├── sample_hyperopt_advanced.py └── sample_hyperopt_loss.py ├── logs └── freqtrade.log ├── notebooks └── strategy_analysis_example.ipynb ├── strategies ├── BB_RSI.py └── sample_strategy.py └── tradesv3.sqlite /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /images/probs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/images/probs.png -------------------------------------------------------------------------------- /user_data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/config.json -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/hyperopts/sample_hyperopt.py -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/hyperopts/sample_hyperopt_advanced.py -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/hyperopts/sample_hyperopt_loss.py -------------------------------------------------------------------------------- /user_data/logs/freqtrade.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/logs/freqtrade.log -------------------------------------------------------------------------------- /user_data/notebooks/strategy_analysis_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/notebooks/strategy_analysis_example.ipynb -------------------------------------------------------------------------------- /user_data/strategies/BB_RSI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/strategies/BB_RSI.py -------------------------------------------------------------------------------- /user_data/strategies/sample_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/strategies/sample_strategy.py -------------------------------------------------------------------------------- /user_data/tradesv3.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhandal/crypto-trading-bot/HEAD/user_data/tradesv3.sqlite --------------------------------------------------------------------------------