Market Wrap: Bitcoin Pushes Past $K While Crypto Locked in DeFi at All-Time High - CoinDesk

Category: Eropa Amerika

2.7 eth to btc

Follow the Bitcoin price live with the interactive, real-time chart and read our expert articles btc #eth #xrp @DailyFX Prices via @IGcom conwaytransport.com.au​LpRLnlk1cD. Detail page of the symbol 'ETH/BTC' with master data, quote data, latest chart, news and sector comparison. Ethereum is a decentralized, open-source blockchain featuring smart contract functionality. Ether (ETH) is the native cryptocurrency of the platform. It is the second-largest cryptocurrency by market capitalization, after Bitcoin. Gas; Comparison to Bitcoin; Supply; Governance; Difficulty bomb; Markets. 2.7 eth to btc

Disclaimer

In this part, I am going to analyze which coin (Bitcoin, Ethereum or Litecoin) was the most profitable in the last two months using buy and hold strategy. We’ll go through the analysis of these 3 cryptocurrencies and try to give an objective answer.

In case you’ve missed my other articles about this topic:

Here are a few links that might interest you:

- Labeling and Data Engineering for Conversational AI and Analytics- Data Science for Business Leaders [Course]- Intro to Machine Learning with PyTorch [Course]- Become a Growth Product Manager [Course]- Deep Learning (Adaptive Computation and ML series) [Ebook]- Free skill tests for Data Scientists & Machine Learning Engineers

Some of the links above are affiliatelinks and if you go through them to make a purchase I’ll earn a commission. Keep in mind that I link courses because of their quality and not because of the commission I receive from your purchases.

I am not a trader and this blog post is not financial advice. This is purely introductory knowledge. The conclusion here can be misleading as we analyze the period with immense growth.

For other requirements, see my previous blog post in this series.

To get the latest data, go to the previous blog post, where I described how to download it using Cryptocompare API. You can also use the data I work within this example.

First, let’s download hourly data for BTC, ETH, and LTC from Coinbase exchange. This time we work with an hourly time interval as it has higher granularity. Cryptocompare API limits response to samples, which is months of data for each coin.

import pandas as pddefget_filename(from_symbol, to_symbol, exchange, datetime_interval, download_date):
return '%s_%s_%s_%s_%conwaytransport.com.au' % (from_symbol, to_symbol, exchange, datetime_interval, download_date)defread_dataset(filename):
print('Reading data from %s' % filename)
df = pd.read_csv(filename)
df.datetime = pd.to_datetime(df.datetime) # change to datetime
df = df.set_index('datetime')
df = df.sort_index() # sort by datetime
print(df.shape)
return dfdf_btc = read_dataset(get_filename('BTC', 'USD', 'Coinbase', 'hour', ''))
df_eth = read_dataset(get_filename('ETH', 'USD', 'Coinbase', 'hour', ''))
df_ltc = read_dataset(get_filename('LTC', 'USD', 'Coinbase', 'hour', ''))df_conwaytransport.com.au()

We are going to analyze closing prices, which are prices at which the hourly period closed. We merge BTC, ETH and LTC closing prices to a Dataframe to make analysis easier.

df = pd.DataFrame({'BTC': df_btc.close,
'ETH': df_eth.close,
'LTC': df_ltc.close})df.head()

In months, all three cryptocurrencies fluctuated a lot as you can observe in the table below.

For each coin, we count the number of events and calculate mean, standard deviation, minimum, quartiles, and maximum closing price.

Observations

  • The difference between the highest and the lowest BTC price was more than $ in months.
  • The LTC surged from $ to $ at a certain point, which is an increase of %.
df.describe()

We visualize the data in the table above with a box plot. A box plot shows the quartiles of the dataset with points that are determined to be outliers using a method of the inter-quartile range (IQR). In other words, the IQR is the first quartile (25%) subtracted from the third quartile (75%).

On the box plot below, we see that LTC closing hourly price was most of the time between $50 and $ in the last months. All values over $ are outliers (using IQR). Note that outliers are specific to this data sample.

import seaborn as snsax = sns.boxplot(data=df['LTC'], orient="h")

Histogram of LTC closing price

Let’s estimate the frequency distribution of LTC closing prices. The histogram shows the number of hours LTC had a certain value.

Observations

  • LTC closing price was not over $ for many hours.
  • it has right-skewed distribution because a natural limit prevents outcomes on one side.
  • blue dashed line (median) shows that half of the time closing prices were under $
df['LTC'].hist(bins=30, figsize=(15,10)).axvline(df['LTC'].median(), color='b', linestyle='dashed', linewidth=2)

The chart below shows the absolute closing prices. It is not of much use as BTC closing prices are much higher than prices of ETH and LTC.

df.plot(grid=True, figsize=(15, 10))

We are interested in a relative change of the price rather than in absolute price, so we use three different y-axis scales.

We see that closing prices move in tandem. When one coin closing price increases so do the other.

import conwaytransport.com.au as plt
import numpy as npfig, ax1 = plt.subplots(figsize=(20, 10))
ax2 = ax1.twinx()
rspine = ax2.spines['right']
rspine.set_position(('axes', ))
ax2.set_frame_on(True)
ax2.patch.set_visible(False)
fig.subplots_adjust(right=)df['BTC'].plot(ax=ax1, style='b-')
df['ETH'].plot(ax=ax1, style='r-', secondary_y=True)
df['LTC'].plot(ax=ax2, style='g-')# legend
ax2.legend([ax1.get_lines()[0],
ax1.right_ax.get_lines()[0],
ax2.get_lines()[0]],
['BTC', 'ETH', 'LTC'])

We calculate the Pearson correlation between the closing prices of BTC, ETH, and LTC. Pearson correlation is a measure of the linear correlation between two variables X and Y. It has a value between +1 and −1, where 1 is the total positive linear correlation, 0 is no linear correlation, and −1 is the total negative linear correlation. The correlation matrix is symmetric so we only show the lower half.

Sifr Data daily updates Pearson correlations for many cryptocurrencies.

Observations

  • Closing prices aren’t normalized, see Log Returns, where we normalize closing prices before calculating correlation,
  • BTC, ETH and LTC were highly correlated in the past 2 months. This means, when BTC closing price increased, ETH and LTC followed.
  • ETH and LTC were even more correlated with Pearson correlation coefficient.
import seaborn as sns
import conwaytransport.com.au as plt# Compute the correlation matrix
corr = df.corr()# Generate a mask for the upper triangle
mask = np.zeros_like(corr, dtype=np.bool)
mask[np.triu_indices_from(mask)] = True# Set up the matplotlib figure
f, ax = plt.subplots(figsize=(10, 10))# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(corr, annot=True, fmt = '.4f', mask=mask, center=0, square=True, linewidths=.5)

Buy and hold is a passive investment strategy in which an investor buys a cryptocurrency and holds it for a long period, regardless of fluctuations in the market.

Let’s analyze returns using the Buy and hold strategy for the past months. We calculate the return percentage, where t represents a certain period and price0 is the initial closing price:

df_return = df.apply(lambda x: x / x[0])
df_return.head()

We show that LTC was the most profitable for the period between October 2, and December 24,

df_return.plot(grid=True, figsize=(15, 10)).axhline(y = 1, color = "black", lw = 2)

The cryptocurrencies we analyzed fluctuated a lot but all gained in a given months period.

To run this code download the Jupyter notebook.

Follow me on Twitter, where I regularly tweet about Data Science and Machine Learning.

Источник: conwaytransport.com.au

By -

3 thoughts on “2.7 eth to btc”

Leave a Reply

Your email address will not be published. Required fields are marked *