SlideShare a Scribd company logo
Bitcoin Price Prediction
Using Deep Learning
Algorithm LSTM and
Sentiment Analysis on
Bitcoin.
Contents Overview
2
1. Introduction
2. Why this project?
3. What is NN and RNN?
4. Why LSTM over RNN?
5. Software model - Agile
Process
6. User and System
Requirements
7. Design
8. Implementation
9. Testing
10. Results
11. Future Work
References
Introduction
● Bitcoin is an innovative payment network and a new kind of money or a
cryptocurrency, where cryptocurrency is a digital asset designed to work as a
exchange medium that uses strong cryptography to secure financial
transactions, control the creation of additional units, and verify the transfer of
assets. BITCOIN, the first cryptocurrency was introduced in a paper published
in 2008 by an author under pseudonym of SATOSHI NAKAMOTO.
● We aim to incorporate machine learning to analyse past fluctuations in
currency prices, and attempt to decipher a trend in prices, this is because we
can’t predict accurately and sentiment analysis of bitcoin from twitter tweets.
3
4
● As we reach, in the final year, we will soon be responsible, earning individuals,
who will want to save money and invest it properly to gain huge benefits.
● Since stocks and cryptocurrency trading are in trend, we choose to help common
man to learn how this works, and enable them to invest judiciously by studying
this Trend Analysis.
Why this project
NN and RNN Neural Networks
Conventional Feed-Forward Neural Network
Feed-forward Neural Network is an unidirectional that moves the information
only in one direction from input layers,through the hidden layers,to the output
layers.
Feed-forward Neural Network ,have no memory of previously received input
hence cannot predict the coming next input and it considers only current input.
Simply they cannot remember the past inputs except their training
5
NN and RNN Neural Networks
Recurrent neural network
● Recurrent neural network(RNN) falls under the class of artificial neural
network or advanced artificial neural network in which direct cycles in memory
are involved. Recurrent neural networks has the ability to build networks with
fixed sized input and output layers.In RNN the information cycles in the form
of a loop. Hence,RNN not only considers the current input but also the
previously received inputs.
● Thus RNN contains two inputs one is the current and the other is previous
inputs.Also Feed-forward maps one input to one output but RNN can map one
to many,many to one and many to many. 6
Why LSTM Over Other Neural Networks
Drawbacks of RNN neural network
1. Long term dependencies is the drawback of RNN neural networks.The RNN
neural networks consider both previous and present input to perform the task.
But, in some cases it doesn’t need to consider the previous input as the output
purely depends on current input.Consider the example “the clouds are in the sky”,
in which we are trying to predict the last word based on previous word and
following example needs small context or small gap between relevant
information.But in some cases it needs large context.
7
Why LSTM Over Other Neural Networks
Consider trying to predict the last word in the text “I grew up in France… I
speak fluent French.” Recent information suggests that the next word is probably
the name of a language, but if we want to narrow down which language, we need
the context of France, from further back. It’s entirely possible for the gap between
the relevant information and the point where it is needed to become very large.
Unfortunately, as that gap grows, RNNs become unable to learn to connect
the information. In theory, RNNs are absolutely capable of handling such “long-term
dependencies”. But in practical they don’t.This problem is solved in LSTM
8
Agile Process Model
9
1. Requirements
Analysis
3. Development and
Implementation
4. Testing
Each iteration
develops the small
part of the software
product.
2. Planning and Design
Each iteration develops
the small part of the
software product.
User And System Requirements
User Requirements
● To get the predicted price
of a bitcoin
● To see the trend in
variation of bitcoin
System requirements
● To incorporate machine
learning algorithms in
order decipher the a trend
in prices .
● To use various API which
provides user-friendly UI.
10
“
ALGORITHM
1111
LSTM (Long Short Term Memory) is an artificial recurrent
neural network
(RNN) architecture used in the field of deep learning. A
common LSTM unit is
composed of a cell, an input gate, an output gate and a
forget gate. The cell remembers
values over arbitrary time intervals and the three gates
regulate the flow of
information in and out of the cell.
12
Step 1: First step is to discard cell state. This decision is taken by the Sigmoid layer.
Step 2: The input gate layer then decides which information to store in the cell state.
Then the tanh layer creates a vector of new candidate values.
Step 3: Next, We multiply the old state by ft. This is the new
value, scaled by how much we decided to update each state value.
Step 4: First, we run a sigmoid layer which decides what parts of the cell state .That
is our going to output. Then, we put the cell state through tanh (to push the values to
be between −1 and 1) and multiply it by the output of the sigmoid gate, so that we
only output the parts we decided to.
13
SHORT EXAMPLE 14
Ex : Mady and Monica walk in to the room
together , later Richard walks in to the room.
Mady Said “hi” to ____??
The assumption I am making is memory
might change from Monica to Richard.
BIGGER CONCEPT
IMPLEMENTATION AND DESIGN
15
DESIGN
The Model
16
7
17
18
Model
Implementation
Model Implementation
19
8
STEP WISE PROCEDURE
01
Dataset
preparation
02 Import
Libraries
03
Build the Model and
feed the data.
04
Train and
validate
20
Data Preparation
21
Source: https://coinmarketcap.com/
Data Preprocessing:
● Divide the dataset into and training and testing set.
● Normalize and reshape.
Libraries and Tools used
22
● Keras
● Sklearn
● NumPy
● SpyDer - IDE
● TextBlob
Model.summary()
23
4x[(input shape + 1)xoutput
shape + output shape^2]
Therefore,
4*[(1+1)*256+256*256]
= 4*[2*256+65,536]
= 4*[66,048] = 2,64,192.
Model Fitting using
Back Propagation
▪ Back propagate errors(error calculation with loss function)
▪ Loss optimization (optimizer-update weights)
▪ Calculate gradient.
24
Positive Gradient Decrease weight
Negative Gradient Increase weight
Transfer Learning
25
DESIGN
Sentiment Analysis
26
7
Sentiment Analysis
27
Sentiment Analysis is the process of determining(computationally) whether a piece of
writing is positive, negative or neutral. It is also known as opinion mining.
There are already many APIs developed for sentiment analysis so we decided to use
those existing APIs. The APIs or python library which we planned to use are as
follows,
● Tweepy - which is python client
● TextBlob - Textual Data Parser and provides built program of sentiment
analysis for textual data.
● Natural language toolkit corpora
Implementation
Sentiment Analysis
28
8
Step wise procedure
29
Step 1. Created a Developer application in twitter
Step 2. Parse the tweets data through TextBlob
Step 3. Returned parsed tweets and perform statistical analysis
Tweepy : python client To Twitter API through twitter
developer application
Request
TextBlob : used to process textual data,
remove hashtags, focuses on
adjectives/adverbs, removes stopwords,
used to apply sentiment analysis.
Access to tweets data
Visualization of the implementation
Testing
Last step in the process of
Development
31
9
Types Of Testing
Testing is the last step before the completion of any web application/ program/ website. Like it is mandatory to check
all weapons before going for a war, similarly it is necessary to check that the application works well for any standard
input and produces desired output, serving the purpose of the application. For the above means, the checklist includes
the following testing methods we used in the project:
● Unit Testing : In this level of testing the individual units/ components of a software are tested. The main
purpose is to testify that each unit of the software performs as designed. A unit is the smallest testable part of
any software. It usually has one or a few inputs and usually a single output.
● Integration Testing : In this level of software testing , individual units are combined and tested as a group
together. The purpose of this level of testing is to expose faults in the interaction between integrated units.
● System Testing : It is a level of software testing where a complete and integrated software is tested. The
purpose of this test is to evaluate the system's compliance with the specified requirements.
32
Results
33
10
34
35
Results of GRU Model
Prediction
Sentiment Analysis
37
Future Scope
Future Aspects and Incremental Work
possible
38
11
39
1. Use to predict the prices of other cryptocurrencies like litecoin, ether etc.,
2. We tried to incorporate the idea of transfer learning, this model can be
optimized for better performance.
3. The web application which is the final software product of this project can
provide numerous other applications on single site like - live sentiment
analysis of bitcoin, tutorial to do trading using bitcoin crypto currency etc.,
4. The result predict from the model and the idea of sentiment analysis can
be combined to predict the prices more accurately, this predicted price will
use both - historical data and current events related to Bitcoin.
THANK YOU
40
👍

More Related Content

What's hot (20)

PDF
Bitcoin price prediction
dataalcott
 
PDF
Bitcoin Close Price Prediction Report
Anish Sojan
 
PPTX
Deep learning
Ratnakar Pandey
 
PPTX
Artificial Intelligence
Vinod Kumar Meghwar
 
PDF
Artificial Intelligence Notes Unit 1
DigiGurukul
 
PPTX
Multilayer perceptron
omaraldabash
 
PPT
K mean-clustering algorithm
parry prabhu
 
PDF
RNN and its applications
Sungjoon Choi
 
PPTX
K means clustering
keshav goyal
 
PPT
Transport services
Navin Kumar
 
PPT
key distribution in network security
babak danyal
 
PPTX
Handwritten Digit Recognition(Convolutional Neural Network) PPT
RishabhTyagi48
 
PDF
Big Data Evolution
itnewsafrica
 
PDF
Introduction to Deep Learning (NVIDIA)
Rakuten Group, Inc.
 
PPTX
Lstm
Mehrnaz Faraz
 
PPT
Random number generation
De La Salle University-Manila
 
PPTX
Geoscience satellite image processing
gaurav jain
 
PPTX
Swarm intelligence
Eslam Hamed
 
PPTX
ELEMENTS OF TRANSPORT PROTOCOL
Shashank Rustagi
 
PDF
Chapter 5 IoT Design methodologies
pavan penugonda
 
Bitcoin price prediction
dataalcott
 
Bitcoin Close Price Prediction Report
Anish Sojan
 
Deep learning
Ratnakar Pandey
 
Artificial Intelligence
Vinod Kumar Meghwar
 
Artificial Intelligence Notes Unit 1
DigiGurukul
 
Multilayer perceptron
omaraldabash
 
K mean-clustering algorithm
parry prabhu
 
RNN and its applications
Sungjoon Choi
 
K means clustering
keshav goyal
 
Transport services
Navin Kumar
 
key distribution in network security
babak danyal
 
Handwritten Digit Recognition(Convolutional Neural Network) PPT
RishabhTyagi48
 
Big Data Evolution
itnewsafrica
 
Introduction to Deep Learning (NVIDIA)
Rakuten Group, Inc.
 
Random number generation
De La Salle University-Manila
 
Geoscience satellite image processing
gaurav jain
 
Swarm intelligence
Eslam Hamed
 
ELEMENTS OF TRANSPORT PROTOCOL
Shashank Rustagi
 
Chapter 5 IoT Design methodologies
pavan penugonda
 

Similar to Bitcoin Price Prediction (20)

PPTX
recurrent_neural_networks_april_2020.pptx
SagarTekwani4
 
PPTX
RNN & LSTM: Neural Network for Sequential Data
Yao-Chieh Hu
 
PPTX
RNN and LSTM model description and working advantages and disadvantages
AbhijitVenkatesh1
 
PPTX
"AI in the browser: predicting user actions in real time with TensorflowJS", ...
Fwdays
 
PDF
Recurrent neural networks rnn
Kuppusamy P
 
PPTX
10.0 SequenceModeling-merged-compressed_edited.pptx
ykchia03
 
PDF
Convolutional and Recurrent Neural Networks
Ramesh Ragala
 
PDF
Concepts of Temporal CNN, Recurrent Neural Network, Attention
SaumyaMundra3
 
PDF
Sequencing and Attention Models - 2nd Version
ssuserbd372d
 
PDF
A Hybrid Deep Neural Network Model For Time Series Forecasting
Martha Brown
 
PPTX
Recurrent Neural Network (RNN) | RNN LSTM Tutorial | Deep Learning Course | S...
Simplilearn
 
PDF
Recurrent Neural Networks (D2L2 2017 UPC Deep Learning for Computer Vision)
Universitat Politècnica de Catalunya
 
PDF
Sequence Modelling with Deep Learning
Natasha Latysheva
 
PDF
Video Analysis with Recurrent Neural Networks (Master Computer Vision Barcelo...
Universitat Politècnica de Catalunya
 
PDF
Recurrent Neural Networks
CloudxLab
 
PPTX
lstmhh hjhj uhujikj iijiijijiojijijijijiji
nadamaatallah665
 
PPTX
Sachpazis: Demystifying Neural Networks: A Comprehensive Guide
Dr.Costas Sachpazis
 
PPT
14889574 dl ml RNN Deeplearning MMMm.ppt
ManiMaran230751
 
PDF
Introduction to Recurrent Neural Network
Knoldus Inc.
 
PPTX
Long Short-Term Memory
milad abbasi
 
recurrent_neural_networks_april_2020.pptx
SagarTekwani4
 
RNN & LSTM: Neural Network for Sequential Data
Yao-Chieh Hu
 
RNN and LSTM model description and working advantages and disadvantages
AbhijitVenkatesh1
 
"AI in the browser: predicting user actions in real time with TensorflowJS", ...
Fwdays
 
Recurrent neural networks rnn
Kuppusamy P
 
10.0 SequenceModeling-merged-compressed_edited.pptx
ykchia03
 
Convolutional and Recurrent Neural Networks
Ramesh Ragala
 
Concepts of Temporal CNN, Recurrent Neural Network, Attention
SaumyaMundra3
 
Sequencing and Attention Models - 2nd Version
ssuserbd372d
 
A Hybrid Deep Neural Network Model For Time Series Forecasting
Martha Brown
 
Recurrent Neural Network (RNN) | RNN LSTM Tutorial | Deep Learning Course | S...
Simplilearn
 
Recurrent Neural Networks (D2L2 2017 UPC Deep Learning for Computer Vision)
Universitat Politècnica de Catalunya
 
Sequence Modelling with Deep Learning
Natasha Latysheva
 
Video Analysis with Recurrent Neural Networks (Master Computer Vision Barcelo...
Universitat Politècnica de Catalunya
 
Recurrent Neural Networks
CloudxLab
 
lstmhh hjhj uhujikj iijiijijiojijijijijiji
nadamaatallah665
 
Sachpazis: Demystifying Neural Networks: A Comprehensive Guide
Dr.Costas Sachpazis
 
14889574 dl ml RNN Deeplearning MMMm.ppt
ManiMaran230751
 
Introduction to Recurrent Neural Network
Knoldus Inc.
 
Long Short-Term Memory
milad abbasi
 
Ad

Recently uploaded (20)

PDF
NOISE CONTROL ppt - SHRESTH SUDHIR KOKNE
SHRESTHKOKNE
 
PDF
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
PPTX
Water resources Engineering GIS KRT.pptx
Krunal Thanki
 
PDF
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
PDF
Non Text Magic Studio Magic Design for Presentations L&P.pdf
rajpal7872
 
PPTX
ETP Presentation(1000m3 Small ETP For Power Plant and industry
MD Azharul Islam
 
PPTX
Online Cab Booking and Management System.pptx
diptipaneri80
 
PPTX
Precedence and Associativity in C prog. language
Mahendra Dheer
 
PDF
SG1-ALM-MS-EL-30-0008 (00) MS - Isolators and disconnecting switches.pdf
djiceramil
 
PDF
All chapters of Strength of materials.ppt
girmabiniyam1234
 
PDF
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
PPTX
sunil mishra pptmmmmmmmmmmmmmmmmmmmmmmmmm
singhamit111
 
PPTX
Fluid statistics and Numerical on pascal law
Ravindra Kolhe
 
PDF
勉強会資料_An Image is Worth More Than 16x16 Patches
NABLAS株式会社
 
PPTX
Sensor IC System Design Using COMSOL Multiphysics 2025-July.pptx
James D.B. Wang, PhD
 
PDF
Natural Language processing and web deigning notes
AnithaSakthivel3
 
PDF
Web Technologies - Chapter 3 of Front end path.pdf
reemaaliasker
 
PPTX
filteration _ pre.pptx 11111110001.pptx
awasthivaibhav825
 
PPT
IISM Presentation.ppt Construction safety
lovingrkn
 
PDF
Introduction to Robotics Mechanics and Control 4th Edition by John J. Craig S...
solutionsmanual3
 
NOISE CONTROL ppt - SHRESTH SUDHIR KOKNE
SHRESTHKOKNE
 
2025 Laurence Sigler - Advancing Decision Support. Content Management Ecommer...
Francisco Javier Mora Serrano
 
Water resources Engineering GIS KRT.pptx
Krunal Thanki
 
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
Non Text Magic Studio Magic Design for Presentations L&P.pdf
rajpal7872
 
ETP Presentation(1000m3 Small ETP For Power Plant and industry
MD Azharul Islam
 
Online Cab Booking and Management System.pptx
diptipaneri80
 
Precedence and Associativity in C prog. language
Mahendra Dheer
 
SG1-ALM-MS-EL-30-0008 (00) MS - Isolators and disconnecting switches.pdf
djiceramil
 
All chapters of Strength of materials.ppt
girmabiniyam1234
 
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
sunil mishra pptmmmmmmmmmmmmmmmmmmmmmmmmm
singhamit111
 
Fluid statistics and Numerical on pascal law
Ravindra Kolhe
 
勉強会資料_An Image is Worth More Than 16x16 Patches
NABLAS株式会社
 
Sensor IC System Design Using COMSOL Multiphysics 2025-July.pptx
James D.B. Wang, PhD
 
Natural Language processing and web deigning notes
AnithaSakthivel3
 
Web Technologies - Chapter 3 of Front end path.pdf
reemaaliasker
 
filteration _ pre.pptx 11111110001.pptx
awasthivaibhav825
 
IISM Presentation.ppt Construction safety
lovingrkn
 
Introduction to Robotics Mechanics and Control 4th Edition by John J. Craig S...
solutionsmanual3
 
Ad

Bitcoin Price Prediction

  • 1. Bitcoin Price Prediction Using Deep Learning Algorithm LSTM and Sentiment Analysis on Bitcoin.
  • 2. Contents Overview 2 1. Introduction 2. Why this project? 3. What is NN and RNN? 4. Why LSTM over RNN? 5. Software model - Agile Process 6. User and System Requirements 7. Design 8. Implementation 9. Testing 10. Results 11. Future Work References
  • 3. Introduction ● Bitcoin is an innovative payment network and a new kind of money or a cryptocurrency, where cryptocurrency is a digital asset designed to work as a exchange medium that uses strong cryptography to secure financial transactions, control the creation of additional units, and verify the transfer of assets. BITCOIN, the first cryptocurrency was introduced in a paper published in 2008 by an author under pseudonym of SATOSHI NAKAMOTO. ● We aim to incorporate machine learning to analyse past fluctuations in currency prices, and attempt to decipher a trend in prices, this is because we can’t predict accurately and sentiment analysis of bitcoin from twitter tweets. 3
  • 4. 4 ● As we reach, in the final year, we will soon be responsible, earning individuals, who will want to save money and invest it properly to gain huge benefits. ● Since stocks and cryptocurrency trading are in trend, we choose to help common man to learn how this works, and enable them to invest judiciously by studying this Trend Analysis. Why this project
  • 5. NN and RNN Neural Networks Conventional Feed-Forward Neural Network Feed-forward Neural Network is an unidirectional that moves the information only in one direction from input layers,through the hidden layers,to the output layers. Feed-forward Neural Network ,have no memory of previously received input hence cannot predict the coming next input and it considers only current input. Simply they cannot remember the past inputs except their training 5
  • 6. NN and RNN Neural Networks Recurrent neural network ● Recurrent neural network(RNN) falls under the class of artificial neural network or advanced artificial neural network in which direct cycles in memory are involved. Recurrent neural networks has the ability to build networks with fixed sized input and output layers.In RNN the information cycles in the form of a loop. Hence,RNN not only considers the current input but also the previously received inputs. ● Thus RNN contains two inputs one is the current and the other is previous inputs.Also Feed-forward maps one input to one output but RNN can map one to many,many to one and many to many. 6
  • 7. Why LSTM Over Other Neural Networks Drawbacks of RNN neural network 1. Long term dependencies is the drawback of RNN neural networks.The RNN neural networks consider both previous and present input to perform the task. But, in some cases it doesn’t need to consider the previous input as the output purely depends on current input.Consider the example “the clouds are in the sky”, in which we are trying to predict the last word based on previous word and following example needs small context or small gap between relevant information.But in some cases it needs large context. 7
  • 8. Why LSTM Over Other Neural Networks Consider trying to predict the last word in the text “I grew up in France… I speak fluent French.” Recent information suggests that the next word is probably the name of a language, but if we want to narrow down which language, we need the context of France, from further back. It’s entirely possible for the gap between the relevant information and the point where it is needed to become very large. Unfortunately, as that gap grows, RNNs become unable to learn to connect the information. In theory, RNNs are absolutely capable of handling such “long-term dependencies”. But in practical they don’t.This problem is solved in LSTM 8
  • 9. Agile Process Model 9 1. Requirements Analysis 3. Development and Implementation 4. Testing Each iteration develops the small part of the software product. 2. Planning and Design Each iteration develops the small part of the software product.
  • 10. User And System Requirements User Requirements ● To get the predicted price of a bitcoin ● To see the trend in variation of bitcoin System requirements ● To incorporate machine learning algorithms in order decipher the a trend in prices . ● To use various API which provides user-friendly UI. 10
  • 11. “ ALGORITHM 1111 LSTM (Long Short Term Memory) is an artificial recurrent neural network (RNN) architecture used in the field of deep learning. A common LSTM unit is composed of a cell, an input gate, an output gate and a forget gate. The cell remembers values over arbitrary time intervals and the three gates regulate the flow of information in and out of the cell.
  • 12. 12 Step 1: First step is to discard cell state. This decision is taken by the Sigmoid layer. Step 2: The input gate layer then decides which information to store in the cell state. Then the tanh layer creates a vector of new candidate values. Step 3: Next, We multiply the old state by ft. This is the new value, scaled by how much we decided to update each state value. Step 4: First, we run a sigmoid layer which decides what parts of the cell state .That is our going to output. Then, we put the cell state through tanh (to push the values to be between −1 and 1) and multiply it by the output of the sigmoid gate, so that we only output the parts we decided to.
  • 13. 13
  • 14. SHORT EXAMPLE 14 Ex : Mady and Monica walk in to the room together , later Richard walks in to the room. Mady Said “hi” to ____?? The assumption I am making is memory might change from Monica to Richard.
  • 17. 17
  • 20. STEP WISE PROCEDURE 01 Dataset preparation 02 Import Libraries 03 Build the Model and feed the data. 04 Train and validate 20
  • 21. Data Preparation 21 Source: https://coinmarketcap.com/ Data Preprocessing: ● Divide the dataset into and training and testing set. ● Normalize and reshape.
  • 22. Libraries and Tools used 22 ● Keras ● Sklearn ● NumPy ● SpyDer - IDE ● TextBlob
  • 23. Model.summary() 23 4x[(input shape + 1)xoutput shape + output shape^2] Therefore, 4*[(1+1)*256+256*256] = 4*[2*256+65,536] = 4*[66,048] = 2,64,192.
  • 24. Model Fitting using Back Propagation ▪ Back propagate errors(error calculation with loss function) ▪ Loss optimization (optimizer-update weights) ▪ Calculate gradient. 24 Positive Gradient Decrease weight Negative Gradient Increase weight
  • 27. Sentiment Analysis 27 Sentiment Analysis is the process of determining(computationally) whether a piece of writing is positive, negative or neutral. It is also known as opinion mining. There are already many APIs developed for sentiment analysis so we decided to use those existing APIs. The APIs or python library which we planned to use are as follows, ● Tweepy - which is python client ● TextBlob - Textual Data Parser and provides built program of sentiment analysis for textual data. ● Natural language toolkit corpora
  • 29. Step wise procedure 29 Step 1. Created a Developer application in twitter Step 2. Parse the tweets data through TextBlob Step 3. Returned parsed tweets and perform statistical analysis
  • 30. Tweepy : python client To Twitter API through twitter developer application Request TextBlob : used to process textual data, remove hashtags, focuses on adjectives/adverbs, removes stopwords, used to apply sentiment analysis. Access to tweets data Visualization of the implementation
  • 31. Testing Last step in the process of Development 31 9
  • 32. Types Of Testing Testing is the last step before the completion of any web application/ program/ website. Like it is mandatory to check all weapons before going for a war, similarly it is necessary to check that the application works well for any standard input and produces desired output, serving the purpose of the application. For the above means, the checklist includes the following testing methods we used in the project: ● Unit Testing : In this level of testing the individual units/ components of a software are tested. The main purpose is to testify that each unit of the software performs as designed. A unit is the smallest testable part of any software. It usually has one or a few inputs and usually a single output. ● Integration Testing : In this level of software testing , individual units are combined and tested as a group together. The purpose of this level of testing is to expose faults in the interaction between integrated units. ● System Testing : It is a level of software testing where a complete and integrated software is tested. The purpose of this test is to evaluate the system's compliance with the specified requirements. 32
  • 34. 34
  • 38. Future Scope Future Aspects and Incremental Work possible 38 11
  • 39. 39 1. Use to predict the prices of other cryptocurrencies like litecoin, ether etc., 2. We tried to incorporate the idea of transfer learning, this model can be optimized for better performance. 3. The web application which is the final software product of this project can provide numerous other applications on single site like - live sentiment analysis of bitcoin, tutorial to do trading using bitcoin crypto currency etc., 4. The result predict from the model and the idea of sentiment analysis can be combined to predict the prices more accurately, this predicted price will use both - historical data and current events related to Bitcoin.