AI Model to predict crypto prices using modern machine learning and deep learning methods.
Clone the repository using git clone [email protected]:Pirimid/crypto-price-prediction.git
. Then follow below steps:
-
Open the jypyter server on your computer and nevigate to the clone repository.
-
Open
Visualizing cryptocurrency data.ipynb
file and run the notebook. It will do some plotting for five different cryptocurrency stated in the file. The plots are related to the prices and the fluctuation in it. -
Open
CryptoCurrency data EDA.ipynb
to see analysis ofBitcoin
data. It is really ineresting to see how the prices got changed over the time. -
Open the
Prediction of Close price for crypto using LSTM.ipynb
. In the file we have usedLSTM
model amd trained it to predict the future close price ofBitcoin
,Ethereum
andRipple
. We have shown some prediction for each of the currency as an example as well. -
Open the
Predicting Bitcoin Price using twitter sentiment and numeric data.ipynb
notbook. In this notebook we have merged the numeric price data with sentiment score of tweets for each day. This way we can combine thenews
ortweet
data to predict the prices. It can be converted real-world trading application with thi approach.
LSTM(Long Short Term Memory) network.