Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 2.34 KB

File metadata and controls

37 lines (24 loc) · 2.34 KB

Cryptocurrency-Analysis-Using-Python

postgreSQL

Overview

A Python program analysing three different cryptocurrencies : Bitcoin, Ether and Litecoin. Here I had used the last one year data : 27/02/2020 - 27/02/2021

Technical Aspect

  1. Data Collection : Collect the price data of each cryptocoins of last one year from 28/02/2020 - 27/02/2021. You can download the dataset from my github from here.
  2. Preprocess the data : As I am doing the analysis on the closing price of each cryptocoins, we need to extract only the closing price of each coins from each dataset and scale it.
  3. Analyse and visualize the price variation of each coins. Following graph shows the price variation.

postgreSQL

4. Find whether there is any correlation for the price variance of each coin. My findings say that the price variation is highly correlated. 5. Analyse the fluctuations of Daily Simple Returns from each coin.

postgreSQL

The graph shows that Ether is having obvious high and low spikes wen considering Daily Simple Returns. 6. Finally find how a dollar investment in each coins ends up (whether it is a loss or profit) after one year.

postgreSQL

The graph shows that from the past one year data investment in Ether is profitable compared to Bitcoin and Litecoin. A dollar investment in Ether have turned above 6 dollar.

Installation

The Code is written in Python 3.9.1 If you don't have Python installed you can find it here. If you are using a lower version of Python you can upgrade using the pip package, ensuring you have the latest version of pip.

Technologies Used