MOGEMA - An AlgoTrading bot using Machine Learning Algorithm
Introduction Hello Folks, here I am going to introduce MOGEMA V4 one of my machine learning bots that predicts the future value of cryptocurrencies using a machine learning algorithm and executes the trade accordingly. Algorithm Applied the Linear Regression model one of the popular Machine learning models which predict the closing price of the cryptocurrency for the next specified interval time. And execute the trade with calculated Target and Stoploss. Requirements Here I am using Binance exchange for trading cryptos. To execute a trade using python script, you need to generate API Key and Secret Key which fetch the real-time price of Cryptocurrency. Project Structure This was the Project structure of Mogema V4. I'll explain the functions of each file one by one, Config.py - which stores the Authentic Information like Auth Key & Secret Key LRAlgo.py - which performs the functions of creating a dataset to train our ML m...