├── .gitignore ├── AI.py ├── LICENSE ├── README.md ├── bot ├── AI_client.mq5 ├── Data.py ├── bot.py ├── main.py ├── orders.py ├── steps.txt └── test_order.py └── dataGen.mq5 /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.pkl 3 | __pycache__/ -------------------------------------------------------------------------------- /AI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/AI.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/README.md -------------------------------------------------------------------------------- /bot/AI_client.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/AI_client.mq5 -------------------------------------------------------------------------------- /bot/Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/Data.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/main.py -------------------------------------------------------------------------------- /bot/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/orders.py -------------------------------------------------------------------------------- /bot/steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/steps.txt -------------------------------------------------------------------------------- /bot/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/bot/test_order.py -------------------------------------------------------------------------------- /dataGen.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kecoma1/AI_MACD_RSI_EMA_BOT/HEAD/dataGen.mq5 --------------------------------------------------------------------------------