From 0d0c94ae99f92f76b11ea6462739b6b1468328f4 Mon Sep 17 00:00:00 2001 From: Mike <76995924+CodeDestroyer19@users.noreply.github.com> Date: Sat, 15 Jul 2023 18:51:21 +0200 Subject: [PATCH] Added pymt5 lib --- app/bot.py | 2 +- app/requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/bot.py b/app/bot.py index f8ce0fa..e29966b 100644 --- a/app/bot.py +++ b/app/bot.py @@ -4,7 +4,7 @@ import numpy as np from sklearn.preprocessing import MinMaxScaler import talib import matplotlib.pyplot as plt -import MetaTrader5 as mt5 +import pymt5 as mt5 from keras.models import Sequential from keras.layers import Dense, Dropout from keras.optimizers import Adam diff --git a/app/requirements.txt b/app/requirements.txt index e797d35..f97bba1 100755 --- a/app/requirements.txt +++ b/app/requirements.txt @@ -3,4 +3,5 @@ pandas TA-Lib matplotlib scikit-learn -tensorflow \ No newline at end of file +tensorflow +pymt5 \ No newline at end of file