Free Valuation Resources Reviewed by Momizat on . Build Your Own Industry Risk Premium – for Free There are a number of resources in the internet that business valuation analysts can use and incorporate into th Build Your Own Industry Risk Premium – for Free There are a number of resources in the internet that business valuation analysts can use and incorporate into th Rating: 0
You Are Here: Home » QuickRead Featured » Free Valuation Resources

Free Valuation Resources

Build Your Own Industry Risk Premium – for Free

There are a number of resources in the internet that business valuation analysts can use and incorporate into their practices. Best of all, these resources are free. With a little knowledge of excel, basic understanding of API and how it works, and knowing where to look, practitioners can readily use this information in a valuation engagement. What follows is a guide for practitioners interested in programming and building their own Industry Risk Premium (IRP).

Keyboard - golden key Success

By the end of this brief article you will take the first steps to being able to calculate your own industry risk premium free of charge just by pressing a button.  I realize that’s a very big claim, so to verify it I tried it out on a valuation friend that I know has no programming skills whatsoever, despite being an awesome valuator.  In fact, since I won’t be mentioning this person’s name here I think it is fair to say that even his/her Excel skills do not rank in the top quartile amongst finance professionals.

I’ve paraphrased this person’s skepticism in a Q/A format below so that you can prove to yourself, the same way they did, that what I’m proposing is possible for any valuator who wants to take their practice to the next level.

Keep in mind, this only the first step.  To automatically calculate your own IRP, ERP, Beta, or just about any other valuation input you are currently using will require eight more steps which we will cover in subsequent articles (here in QuickRead).  But hopefully this initial exercise should convince you that your existing skills combined with modern web-based programming interfaces make it completely possible to do so.

Is this a pitch for valuation software?

Yes, but it’s not a pitch to sell you valuation software or any other kind of software.  It’s a pitch for you to learn how to make your own valuation software and thereby gain greater knowledge and control over the assumptions that go into every valuation you perform.

Do I need formal programming skills to successfully make software that can help perform valuation analysis?

No, you do not need formal programming skills to be successful at this.  All you need are the same CPA skills that have served you and your clients well thus far.  If you are a CPA, those skills are simply Cut, Paste, and Analyze (“CPA”).  If you are a non-CPA CVA they are the same skills: Cut, [ctrl+V] and Analyze (“CVA”).

You’ll also need some free (Open Source) software applications discussed later in the series, a copy of Excel, and access to free Application Programming Interfaces (APIs) available online.   But for today, all you need is a browser connected to the Internet and a copy of Excel on the same machine.

That seems too good to be true Lorenzo.  I honestly don’t see how that’s possible.

Fair enough.  So before describing what an API is I’m going to prove that you can use one to get useful valuation inputs simply by cutting and pasting, as I suggested previously.  After all, seeing is believing.

Sample Hypothetical Use Case.

You have a friend that owns a small tech company and they’ve asked you to review a valuation that was done as part of their estate planning efforts.  The valuator used a number of publicly traded companies (guideline public companies) to arrive at multiples that were applied to your friend’s company as the primary indication of total equity value.  You’re skeptical and ask what the ticker symbols used by the valuator were and are told, they are as follows:

MSFT, AAPL, GOOGL, AMZN, FB, SPLK, FUEL, YHOO

Immediately recognizing some of the tickers as the largest tech companies, your skepticism turns to pessimism.

You tell your friend that many of those companies are much larger than their company and therefore probably not good analogs for the multiples a hypothetical buyer or seller would consider for a firm doing only $1.2 million in sales (your friend’s annual revenue).

You’d like to go further in conveying the size difference without actually having to send a bill to your friend, so you simply paste a link you’ve programmed to speak to the Yahoo! Finance API into your browser and in a few seconds a spreadsheet (CSV file) pops up with the details.  Go head, give it a try.  Paste the link below into your browser or simply click on it:

http://finance.yahoo.com/d/quotes.csv?s=MSFT+AAPL+GOOGL+AMZN+FB+SPLK+FUEL+YHOO&f=s6np5srj4

When you click on the link, or place it in your browser you’ll get a message that data is being downloaded from Yahoo! and shortly therafter you’ll be given the opportunity to open the file.  You may be asked by Windows for credentials, if so just click the “Cancel” button when prompted for a username and password.

20150423_QR1

20150423_QR2

After you click open a spreadsheet (.csv file) similar to the following table will appear.

Revenue Company Price/Sales Ticker PE Ratio EBITDA
93.46B Microsoft Corporation 3.64 MSFT 16.83 38.51
199.80B Apple Inc. 3.69 AAPL 17.21 73.05
66.00B Google Inc. 5.65 GOOGL 26.13 490.91
88.99B Amazon.com, Inc. 2 AMZN N/A 284
12.47B Facebook, Inc. 18.45 FB 73.78 54.66
450.88M Splunk Inc. 17.69 SPLK N/A 39.35
408.64M Rocket Fuel Inc. 0.93 FUEL N/A 8.76
4.62B Yahoo! Inc. 9.25 YHOO 6.07 32.64

*Note:  Column labels and related bold type formatting entered manually for illustrative purposes

Congratulations!  If you’ve never done this before, you’ve just made your first API call.   Please tweet #1stAPICall@NACVA to inspire others to take the first step also.

In layman terms this is what the link (URL) we pasted into the browser window is doing for us:

Base URL

http://finance.yahoo.com/d/quotes.csv

The question mark “?” in the following URL indicates that we are about to request some data (asking a question or “Query”) about some data Yahoo! has that we want returned.  It separates the path to the resource we need from the fields we would like to get returned.

http://finance.yahoo.com/d/quotes.csv?s

Query String Parameters

The question mark is followed by what are referred to as “query string parameters.”  The same way an unlevered beta sounds more complicated than it really is.

For now, just consider a parameter as having two parts:  a name and a value (or a series of values).  So if I told you one parameter name was “Ticker Symbol” you would automatically think of some possible values, such as those discussed previously (GOOGL for example).

Generally, the parameter name and value(s) are separated by an equal sign “=”, which for finance professionals typically seems very intuitive.

In the Yahoo! Finance API, “s” is a parameter name and it stands for “Symbol”, as in ticker symbol.  So to let the API know you want data returned related to Microsoft, you would set the symbol parameter value to Microsoft as follows:

http://finance.yahoo.com/d/quotes.csv?s=MSFT

Some parameters can accept multiple values and the symbol parameter (s) in the Yahoo! API is a great example of this.  Each of these values has to be separated by some kind of character the API recognizes as serving that purpose.  In the case of this Yahoo! API, you can use either the plus symbol “+” or a comma “,” to separate multiple symbol values in your request.  In the previous example, we used commas, but using plus signs to separate the tickers will return the exact same CSV file.

http://finance.yahoo.com/d/quotes.csv?s=MSFT,AAPL,GOOGL,AMZN,FB,SPLK,FUEL,YHOO&f=s6np5srj

Separating Parameter Names

By convention, name value pairs (such as parameter names and values) are separated by an ampersand.  So, if you look at the URL above, you’ll notice that after we’ve set the symbol “s” values to each ticker, an ampersand “&” appears followed immediately by the “f” parameter, which indicates a tag or property in the Yahoo! Finance API.

You’ve seen this, perhaps without noticing it, earlier today if you searched for something on Google for instance.

If you click on this link:  https://www.google.com/search?q=NACVA+quickread  you’ll get search results for “NACVA QuickRead” from the Google Search API.  The query string (keyword value) is separated here by the plus “+” symbol as we did with tickers symbols in the Yahoo! Finance API example.

You’ll notice that Google returns every possible result to this query resulting in multiple pages.  We can add a tag named “num” and limit the number of results we get from the Google API.  To do this, we have to let the API know where the keyword values end and the property/tag begins.  As before, we simply use the ampersand (“&”) to separate the search term parameter from the number of results tag and then set the results tag (num) equal to 1 if we only want one result shown on the page returned.

https://www.google.com/search?q=NACVA+quickread&num=1

Now change the num tag value from “1” to “2” – just copy and overstrike the “1” with a “2” and then paste into your browser.

Congratulations, you just programmed your second API call!

That was pretty easy right? Now, continuing with the Yahoo! Finance API, since it’s the tool you will use to learn how to build your own industry risk premium for free simply by clicking a button you’ve programmed using the simple techniques in this series.

Tags/Properties

You can set the tags/properties you want to retrieve for each of the symbols using the “f” parameter name (think “format” if that helps).  There are codes for each tag you want to retrieve.  In our example we used the following tags:

S6 (which returns the sales/revenue associated with each ticker)

n (easy to remember – returns the name associated with each ticker)

r (returns the PE ratio – “r” as in “ratio” since the PE ratio is the most popular public company ratio)

p5 (returns the Price/Sales ratio – “p” as in price and the 5 kind of looks like an “s” as in sales)

j4 (returns EBITDA – sorry, no memory peg but there’s no need to remember long term anyway)

In this particular API, the “s” stands for symbol.  We already set the values for the symbol parameter previously, but we can have each symbol displayed separately in the order of our choosing in the output (.csv file) just by including the tag value of “s” again for one of the properties (“f”).

So hopefully now you believe me, that you can use your existing CVA or CPA skills (Copy, Paste, and Analyze), as I have done, to build software that will solve valuation questions and effectively give you greater capacity and better quality analysis than might otherwise be available.  In the next part of this series, we will actually start placing some code into Excel so that instead of you speaking to the Yahoo! Finance API manually by pasting a URL into a browser, your code will dynamically make the request on your behalf.

Hopefully you now know, experientially, what a Web API is.  Some additional background on APIs in general, and my efforts to introduce them to valuators in NACVA over the years, follows hereafter.

What’s an API?

The simple answer is an API is an application programming interface.  But that doesn’t really do it justice, as even that acronym can mean different things based on the context.  So I’ll begin by giving a little background into how an API can allow you to automate the process of gathering information (numbers, images, text, videos, you name it), making it easy for either you or an application you’ve programmed to run further analysis on the data you receive back in response to your request.

Back in 2009 at NACVA’s annual meeting, I demonstrated using an API as part of a valuation engagement.  At the time few valuation analysts knew what an API was or how it could help them so only a couple of attendees came up to me afterwards to ask how the data was being brought into the valuation file automatically.

I entered a company name into a piece of software on my machine and a Risk Free Rate was pulled in from the Internet, Images and Bios for the Subject Company’s management team and directors were downloaded and organized, an Option Pricing Model was generated and an indicated total equity value for the company was created automatically.  With one more click all of this data was exported nicely into Excel free of charge.

Now, each of those items could have been performed manually as follows:

  • By clicking a link to the Federal Reserve website
    • Manually navigating to the constant rate maturities
    • Copying and pasting the appropriate rate that matched the term for the subject company into Excel
    • Pasting a volatility input that matches the cost of equity (risk) of the subject company into a Black-Scholes model in Excel
  • By clicking on a link to Crunchbase’s website
    • Manually navigating to the subject company name
    • Copying and pasting the amounts of private equity capital raised by each company and then pasting that amount, along with the issue dates, into Excel
    • Manually navigating to the team profiles, clicking on each management team members name, and then copying and pasting their pictures and profiles into Excel

An API allowed us to do each of the 50 items (including subtasks) itemized above at the Boston conference just by clicking a button.  That was nearly six years ago.  Today, APIs are ubiquitous and incredibly easy to use.  Spend a handful of hours learning how they work and both your billing capacity and your billing rate should increase dramatically.


Lorenzo Carver, MS, MBA, CVA, CPA is Founder and CEO of Liquid Scenarios, inventor of the Carver Import Algorithm and Search2Model, a patented valuation technology, and author of Venture Capital Valuation published by John Wiley & Sons. He is the author and sole developer of BallPark Business Valuation, the #1 selling, award winning small business valuation solution, and has authored over 120 written reports and more than 30,000 interactive models used by investors to value primary and secondary purchases of venture backed company securities. Carver’s Liquid Scenarios technology has won numerous third-party certifications and awards. Mr. Carver can be reached at (303) 448-8800 or by e-mail at bpcentral@gmail.com.

The National Association of Certified Valuators and Analysts (NACVA) supports the users of business and intangible asset valuation services and financial forensic services, including damages determinations of all kinds and fraud detection and prevention, by training and certifying financial professionals in these disciplines.

Number of Entries : 2537

©2024 NACVA and the Consultants' Training Institute • Toll-Free (800) 677-2009 • 1218 East 7800 South, Suite 301, Sandy, UT 84094 USA

event themes - theme rewards

Scroll to top
G-MZGY5C5SX1
lw