In this article, we will delve into Trading Comps analysis, a fundamental aspect of financial evaluation in the realm of investments. Our focus will be on describing the characteristics and advantages of this approach and provide practical insights by showcasing a real-world application using Python.

Register & Get Data

A Trading Comparable Analysis is a valuation method used in finance to estimate the value of a company by comparing it to the valuation multiples of similar publicly traded companies. The idea is to use the market prices and financial statement data of comparable companies as a benchmark to assess the fair market value of the company being analyzed.

Unlike the Discounted Cash Flow model described in a previous article, Trading Comps is a relative valuation method that assesses a company’s value by comparing it to a group of peers. This approach assumes that comparable companies are fairly valued by the market. While DCF provides a detailed and flexible analysis, Trading Comps offers a snapshot of the current market sentiment by relying on observed market multiples. Analysts often use a combination of these methods to obtain a comprehensive understanding of a company’s valuation. Each approach has its strengths and is suited to different circumstances.

An example: Tesla Inc.

To illustrate the application of the analysis method, we first need to establish an objective company and create a list of peers for comparison. To maintain consistency with the previous article, we will continue to analyse Tesla as the chosen company. Despite the challenge of identifying direct peers for Tesla due to its unique nature, we will consider a basket of large-cap technology and automotive U.S. stocks for comparison: General Motors (GM), Google (GOOGL), Amazon (AMZN), Tencent Holdings (TCEHY), Intel Corporation (INTC), Apple (AAPL), and Ford (F).

Following the approach of previous articles, we will utilize the Python EOD Library to retrieve fundamental data for stocks using the client.get_fundamental_equity function. This package provides excellent versatility and ease of use, making it an ideal choice for extracting companies’ prices and financial statement data. We begin by importing income statement data for our target firm and all companies in our comparison universe.

Register & Get Data

1. Use the “demo” API key to test our data from a limited set of tickers without registering: AAPL.US | TSLA.US | VTI.US | AMZN.US | BTC-USD | EUR-USD
Real-Time Data and all of the APIs (except Bulk) are included without API calls limitations with these tickers and the demo key.
2. Register to get your free API key (limited to 20 API calls per day) with access to: End-Of-Day Historical Data with only the past year for any ticker, and the List of tickers per Exchange.
3. To unlock your API key, we recommend to choose the subscription plan which covers your needs.

Then we compute three key metrics for the trading comps analysis:

  • Revenue Growth measures the percentage increase in a company’s revenue over a specific period. A positive revenue growth indicates the company’s ability to increase its sales, reflecting positive market demand and potential business expansion.
  • EBITDA Margin represents the proportion of a company’s revenue that translates into EBITDA. It is calculated by dividing EBITDA by total revenue. EBITDA margin is a valuable indicator of operational efficiency, as it shows the company’s ability to generate earnings from its core business operations, excluding certain non-operating expenses.
  • Profit Margin measures the percentage of revenue that translates into net profit after deducting all operating expenses, interest, and taxes. It is a key indicator of a company’s profitability and cost management. A higher profit margin indicates effective cost control and operational efficiency.

Also, we focus on the last three year of data and filter out information reported before 2020. Note that certain companies may operate on a fiscal year not ending on December 31st. In such cases, there might be a mismatch as we compare data from yearly reports released at different points in time. To avoid this issue, we suggest replacing yearly with quarterly in the query above.

Image by author

Before proceeding to the peer comparison, we need to gather additional data. Specifically, we will retrieve our target company’s market capitalization and enterprise value (EV), as these values will be used in computing the trading multiples.

Trading Multiples

Trading multiples, also known as valuation multiples or financial ratios, are metrics used in financial analysis to compare the valuation of a company’s stock relative to its financial performance or certain fundamental indicators. Although there are numerous ratios employed in equity research and financial analysis, three primary ones, as illustrated in this example, include:

  • Price-to-Earnings (P/E) compares a company’s stock price to its earnings per share (EPS). It reflects investors’ expectations of a company’s future earnings growth.
  • Enterprise Value-to-EBITDA (EV/EBITDA) compares a company’s enterprise value (market value of equity plus debt minus cash) to its Earnings Before Interest, Taxes, Depreciation, and Amortization (EBITDA).
  • Enterprise Value-to-Revenue assess how the market values a company’s revenue-generating capacity. A higher ratio may indicate that the market values the company’s revenue more favorably, while a lower ratio may suggest a more conservative valuation relative to revenue.
trading-comps-analysis

With our valuation metrics for each company, we can now compute statistics for the entire peers’ universe. This will assist us in visualizing where the target company falls within the distribution of its peers in relation with the group’s mean, median, maximum and minimum values. Higher P/E multiples than those of peers suggest that investors are paying more for the company’s earnings. The same logic applies to the other two ratios. This would indicate that the company may be overpriced and not represent a good investment opportunity.

trading-comps-analysis

As the last step, we calculate the implied share prices for the target company using the group statistics and Tesla’s latest financial statement data. This can provide us with ranges for where Tesla’s price could be if its multiples were the lowest, highest, or around the mean within its peer group. To do that, we will first derive new estimates for EV based on Revenue and EBITDA.

To derive the Implied Share Price from the Enterprise Value, the first step is to compute the Equity Value, which represents the residual interest in the assets of a company after deducting liabilities. The formula is:

Equity Value = Enterprise Value + Cash - Debt

and then divide this quantity by the number of outstanding common shares. This will give us a range of prices for Tesla based on the three metrics: Revenue, EBITDA and Net Income of similar public companies companies

trading-comps-analysis
Image by author

Conclusion

In conclusion, the analysis of Tesla through trading comps provides valuable insights into the company’s relative valuation within the automotive and tech industry. By comparing key financial metrics and multiples with those of its peers, we gain a comprehensive understanding of Tesla’s market position and investor sentiment. The examination of trading multiples such as Price-to-Earnings (P/E), Enterprise Value-to-EBITDA (EV/EBITDA), and Price-to-Earnings (P/E) sheds light on Tesla’s valuation relative to its earnings, operational efficiency, and revenue generation. While the analysis underscores Tesla’s remarkable growth and market dominance, it also emphasizes the importance of considering various factors, such as industry dynamics and growth prospects, for a complete evaluation. As Tesla continues to shape the future of electric vehicles and sustainable energy, this trading comps analysis serves as a valuable tool for investors seeking to make informed decisions in the dynamic landscape.

Register & Get Data