├── LICENSE ├── README.md ├── backtest.py ├── bollinger_bands.py ├── config.py ├── config.yaml ├── constants.py ├── get_coin_data.py ├── get_coin_names.py ├── get_fees.py ├── get_market_cap.py ├── get_portfolio.py ├── google_trends.py ├── jinja_customs.py ├── mail_templates ├── coin_template.html └── mail_body.html ├── mails.py ├── main.py ├── model.py ├── requirements.txt ├── rolling_mean.py └── rsi.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/README.md -------------------------------------------------------------------------------- /backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/backtest.py -------------------------------------------------------------------------------- /bollinger_bands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/bollinger_bands.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/config.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/config.yaml -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/constants.py -------------------------------------------------------------------------------- /get_coin_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/get_coin_data.py -------------------------------------------------------------------------------- /get_coin_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/get_coin_names.py -------------------------------------------------------------------------------- /get_fees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/get_fees.py -------------------------------------------------------------------------------- /get_market_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/get_market_cap.py -------------------------------------------------------------------------------- /get_portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/get_portfolio.py -------------------------------------------------------------------------------- /google_trends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/google_trends.py -------------------------------------------------------------------------------- /jinja_customs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/jinja_customs.py -------------------------------------------------------------------------------- /mail_templates/coin_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/mail_templates/coin_template.html -------------------------------------------------------------------------------- /mail_templates/mail_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/mail_templates/mail_body.html -------------------------------------------------------------------------------- /mails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/mails.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/requirements.txt -------------------------------------------------------------------------------- /rolling_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/rolling_mean.py -------------------------------------------------------------------------------- /rsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrebrener/crypto_predictor/HEAD/rsi.py --------------------------------------------------------------------------------