├── .gitignore ├── README.md ├── data_gathering.py ├── lstm_model.py ├── main.py ├── ml_models.py ├── prueba.txt ├── signal_processing.py ├── support_resistance_finder.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/README.md -------------------------------------------------------------------------------- /data_gathering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/data_gathering.py -------------------------------------------------------------------------------- /lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/lstm_model.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/main.py -------------------------------------------------------------------------------- /ml_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/ml_models.py -------------------------------------------------------------------------------- /prueba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/prueba.txt -------------------------------------------------------------------------------- /signal_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/signal_processing.py -------------------------------------------------------------------------------- /support_resistance_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/support_resistance_finder.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsl/support-resistance_trading-bot/HEAD/visualization.py --------------------------------------------------------------------------------