Can anyone help me with a method that calculates the IRR of a series of stock trades?

Let's say the scenario is:

$10,000 of stock #1 purchased 1/1 and sold 1/7 for $11,000 (+10%)
$20,000 of stock #2 purchased 1/1 and sold 1/20 for $21,000 (+5%)
$15,000 of stock #3 purchased on 1/5 and sold 1/18 for $14,000 (-6.7%)

This should be helpful: http://www.rubyquiz.com/quiz156.html

But I couldn't figure out how to adapt any of the solutions since they assume the period of each return is over a consistent period (1 year).

link|improve this question
It shouldn't be hard to do, but have you worked out the mathematics already? If you can post the mathematical process, it'll make it easier for someone who knows Ruby (but has solved enough maths problems for a lifetime) to help you. – SimonMayer Feb 5 at 1:10
Simon, I have not worked out the mathematics but this wikipedia page explains it: en.wikipedia.org/wiki/Internal_rate_of_return and the rubyquiz page I linked to above shows a simpler implementation in ruby. But I don't understand the math well enough to adapt the simpler solutions from the rubyquiz to my more general example scenario I gave. – Keith Schacht Feb 7 at 0:16
@KeithSchacht, I added an example to my answer showing how to take the daily cash flows from the example you gave and use those as input to irr(). If this helps you solve the problem, please accept+upvote! – Alex D Feb 8 at 20:02
feedback

3 Answers

For an investment that has an initial value and final value, as is the case with your example data that includes purchase price, sell price and a holding period, you only need to find holding period yield.

Holding period yield is calculated by subtracting 1 from holding period return

HPY = HPR - 1
HPR = final value/initial value
HPY = 11,000/10,000 - 1 = 1.1 - 1 = 0.10 = 10%
HPY = 21,000/20,000 - 1 = 1.05 - 1 = 0.05 = 5%
HPY = 14,000/15,000 - 1 = 0.9333 - 1 = -0.0667 = -6.7%

This article explains holding period return and yield

You can also annualize the holding period return and holding period yield using following formula AHPR = HPR^(1/n) AHPY = AHPR - 1

The above formulas only apply if you have a single period return as is the case with your example stock purchase and sale.

Yet if you had multiple returns, for example, you purchased a stock A on 1/1 for 100 and it's closing price over the next week climbed and fell to 98, 103, 101, 100, 99, 104

Then you will have to look beyond what HPR and HPY for multiple returns. In this case you can calculate ARR and GRR. Try out these online calculators for arithmetic rate of return and geometric rate of return.

But then if you had a date schedule for your investments then none of these would apply. You would then have to resort to finding IRR for irregular cash flows. IRR is the internal rate of return for periodic cash flows. For irregular cash flows such as for stock trade, the term XIRR is used. XIRR is an Excel function that calculates internal rate of return for irregular cash flows. To find XIRR you would need a series of cash flows and a date schedule for the cash flows.

Finance.ThinkAndDone.com explains IRR in much more detail than the articles you cited on RubyQuiz and Wiki. The IRR article on Think & Done explains IRR calculation with Newton Raphson method and Secant method using either the NPV equation set to 0 or the profitability index equation set to 1. The site also provides online IRR and XIRR calculators

link|improve this answer
Thanks for the explanation. I'm still not sure how to turn this into a method that I can use, however I found an existing library that does the trick. I'll post it as an answer for future people who may stumble upon this. – Keith Schacht Feb 10 at 4:07
You were not clear about what you wanted to do in your original question. As I stated in my reply XIRR is the internal rate of return for series of cash flows that are not periodic. XIRR returns a single value for rate of return. Yet in your original post, you asked for calculation of multiple rates for multiple transactions – PJ Hooker Feb 10 at 9:20
feedback

I don't know anything about finance, but it makes sense to me that if you want to know the rate of return over 6 months, it should be the rate which equals the yearly rate when compounded twice. If you want to know the rate for 3 months, it should be the rate which equals the yearly rate when compounded 4 times, etc. This implies that converting from a yearly return rate to a rate for an arbitrary period is closely related to calculating roots. If you express the yearly return rate as a proportion of the original amount (i.e. express 20% return as 1.2, 100% return as 2.0, etc), then you can get the 6-month return rate by taking the square root of that number.

Ruby has a very handy way to calculate all kinds of complex roots: the exponentiation operator, **.

n ** 0.5       # square root
n ** (1.0/3.0) # 3rd root

...and so on.

So I think you should be able to convert a yearly rate of return to one for an arbitrary period by:

yearly_return ** (days.to_f / 365)

Likewise to convert a daily, weekly, or monthly rate or return to a yearly rate:

yearly_return = daily_return ** 365
yearly_return = weekly_return ** 52
yearly_return = monthly_return ** 12

...and so on.

As far as I can see (from reading the Wikipedia article), the IRR calculation is not actually dependent on the time period used. If you give a series of yearly cash flows as input, you get a yearly rate. If you give a series of daily cash flows as input, you get a daily rate, and so on.

I suggest you use one of the solutions you linked to to calculate IRR for daily or weekly cash flows (whatever is convenient), and convert that to a yearly rate using exponentiation. You will have to add 1 to the output of the irr() method (so that 10% return will be 1.1 rather than 0.1, etc).

Using the daily cash flows for the example you gave, you could do this to get daily IRR:

irr([-30000,0,0,0,-15000,0,11000,0,0,0,0,0,0,0,0,0,0,14000,0,21000])
link|improve this answer
Alex, I get the jist of what you're saying but I don't get how to adapt it. Taking the scenario I outlined above, you could say the input is something like: irr( [ ] ) – Keith Schacht Feb 6 at 4:42
I just notice my comment was cutoff. What I meant to ask was: how I can modify the IRR method from that site to support my scenario as an input? – Keith Schacht Feb 6 at 16:54
@KeithSchacht, I just did some reading on Wikipedia and added more information for you. – Alex D Feb 6 at 19:10
You need to modify the number of periods. I would do daily. – Steve Feb 8 at 2:51
Thanks guys, I haven't had time to dig into this. I'll review in detail this weekend and see if it works. – Keith Schacht Feb 8 at 20:08
show 1 more comment
feedback
up vote 1 down vote accepted

I finally found exactly what I was looking for: http://rubydoc.info/gems/finance/1.1.0/Finance/Cashflow

gem install finance

To solve the scenario I posted originally:

include Finance
trans = []
trans << Transaction.new( -10000, date: Time.new(2012,1,1) )
trans << Transaction.new( 11000, date: Time.new(2012,1,7) )
trans << Transaction.new( -20000, date: Time.new(2012,1,1) )
trans << Transaction.new( 21000, date: Time.new(2012,1,20) )
trans << Transaction.new( -15000, date: Time.new(2012,1,5) )
trans << Transaction.new( 14000, date: Time.new(2012,1,18) )

trans.xirr.apr.to_f.round(2)

I also found this simple method: https://gist.github.com/1364990

However, it gave me some trouble. I tried a half dozen different test cases and one of them would raise an exception that I was never able to debug. But the xirr() method in this Finance gem worked for every test case I could throw at it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.