This is a gem to calculate XIRR on Bisection Method or Newton Method.
Add this line to your application's Gemfile:
gem 'xirr'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install xirr
include Xirr
cf = Cashflow.new
cf << Transaction.new(-1000, date: '2014-01-01'.to_date)
cf << Transaction.new(-2000, date: '2014-03-01'.to_date)
cf << Transaction.new( 4500, date: '2015-12-01'.to_date)
cf.xirr
# 0.25159694345042327 # [BigDecimal]
flow = []
flow << Transaction.new(-1000, date: '2014-01-01'.to_date)
flow << Transaction.new(-2000, date: '2014-03-01'.to_date)
flow << Transaction.new( 4500, date: '2015-12-01'.to_date)
cf = Cashflow.new flow: flow
cf.xirr
# intializer/xirr.rb
Xirr.configure do |config|
config.eps = '1.0e-12'
config.days_in_year = 365.25
end
http://rubydoc.info/github/tubedude/xirr/master/frames
Ruby:
- 2.2.1
- 2.3
- 2.4
ActiveSupport:
- 4.2
- 5
http://puneinvestor.wordpress.com/2013/10/01/calculate-xirr-in-ruby-bisection-method/ https://github.com/wkranec/finance
- Fork it ( https://github.com/tubedude/xirr/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request