Bitcoin Vs Ethereum Comparison


Let's buy Bitcoin versus Ethereum to determine which of the two has performed better in recent years.

To conduct this comparison, we'll use data provided by Tradingview and create a chart for your convenience. At the end of the article, I'll share the indicator I programmed to conduct this comparison.

61d582cdfcb05072a8349bcef0736ed6f58ea474cabc89352e406524ff02c40b.png

The chart shows the evolution of BTC/ETH. As you can see, from mid-2022 to mid-2024, the amount of ETH needed to buy one Bitcoin was about 14 to 18.

In the second half of 2024, the price of Bitcoin began to rise, while Ethereum could not keep up with these increases. As of today, April 2, 2025, 45 ETH are needed to buy one Bitcoin.

We can say that investing in Bitcoin has been much more profitable than investing in Ethereum. However, it's important to keep in mind that the situation can also be reversed.

 

Conclusion:

In my humble opinion, experience, and the data available to me, Ethereum's price/performance performance has been negative relative to Bitcoin.

We see no indication in the market that this trend could be reversed.

There are investors who only invest when one of the major currencies is going through a bad time. This may be one of those cases, although the risk is high, as is the possibility of recovery.

Configuration:

  1. 1-week candlestick chart
  2. Indicator: Investment Product Ratio

 

Indicator:

//@version=5

//

// Investment Product Ratio Indicator

// ## Description:

// This indicator allows you to compare two investment products by calculating their ratio.

// To do this, the user enters the symbols of two financial assets, and the indicator

// obtains their closing prices on a one-day timeframe.

// The price of the first product is then divided by the second to generate a data series

// that is graphed in an indicator window.

//

// ## Input Parameters:

// - `Product 1`: Symbol of the first financial product.

// - `Product 2`: Symbol of the second financial product.

//

// ## How it Works:

// 1. Enter the symbols of the two products to be compared.

// 2. Obtain the closing price of each product on the daily timeframe.

// 3. Calculate the ratio by dividing the price of the first product by the second.

// 4. The ratio data series is graphed for visual analysis.

//

// ## Purpose:

// - Relative comparison between two assets.

// - Identification of trends and arbitrage opportunities.

// - Evaluation of the relative strength of one asset over another.

//

 indicator("Investment Products Ratio", overlay=false)

 

// Entry of the two investment products

product1 = input.symbol("BINANCE:BTCUSDT", "Product 1")

product2 = input.symbol("BINANCE:ETHUSD", "Product 2")

 

// Get closing prices

price1 = request.security(product1, "D", close)

price2 = request.security(product2, "D", close)

 

// Calculate the ratio

ratio = price1 / price2

 

// Graficar el ratio

plot(ratio, title="Product1 / Product2 Ratio", color=color.black, linewidth = 2)

 

 

How do you rate this article?

16


Ana69
Ana69

I am passionate about writing and reading. I am excited to be part of this community, learn from your writings and share mine. I am open to comments and suggestions.


Cryptocurrencies Investments
Cryptocurrencies Investments

My little blog where I express my ideas about cryptocurrencies and investments in general

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.