Open source or free financial analysis programs/libraries - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:12:04Zhttp://stackoverflow.com/feeds/question/333030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/333030/open-source-or-free-financial-analysis-programs-libraries2Open source or free financial analysis programs/librariesJared2008-12-02T04:09:17Z2008-12-02T05:10:14Z
<p>I'm looking for something containing similar functions to Matlab’s financial and financial derivatives toolbox but don’t have the cash to spend on matlab. I would appreciate any info on free or open source libraries or programs that will let me easily calculate interest rates, risk etc.</p>
http://stackoverflow.com/questions/333030/open-source-or-free-financial-analysis-programs-libraries/333038#3330381Answer by Frank Krueger for Open source or free financial analysis programs/librariesFrank Krueger2008-12-02T04:13:43Z2008-12-02T04:13:43Z<p>How about the <a href="http://www.gnu.org/software/octave/" rel="nofollow">Octave</a> financial functions?</p>
<p><a href="http://www.gnu.org/software/octave/doc/interpreter/Financial-Functions.html#Financial-Functions" rel="nofollow">http://www.gnu.org/software/octave/doc/interpreter/Financial-Functions.html#Financial-Functions</a></p>
<p>I'm not familiar with the Matlab toolbox, so you'll have to judge for yourself.</p>
<blockquote>
<p>GNU Octave is a high-level language,
primarily intended for numerical
computations. It provides a convenient
command line interface for solving
linear and nonlinear problems
numerically, and for performing other
numerical experiments using a language
that is mostly compatible with Matlab.
It may also be used as a
batch-oriented language.</p>
</blockquote>
http://stackoverflow.com/questions/333030/open-source-or-free-financial-analysis-programs-libraries/333041#3330414Answer by Alan for Open source or free financial analysis programs/librariesAlan2008-12-02T04:15:19Z2008-12-02T04:15:19Z<p>How about <a href="http://www.jquantlib.org/index.php/Main_Page" rel="nofollow">JQuantLib</a> or <a href="http://quantlib.org/index.shtml" rel="nofollow">QuantLib</a>?</p>
http://stackoverflow.com/questions/333030/open-source-or-free-financial-analysis-programs-libraries/333107#3331072Answer by Stefan for Open source or free financial analysis programs/librariesStefan2008-12-02T05:10:14Z2008-12-02T05:10:14Z<p>Exactly what functions do you need? How advanced? You have some financial functions in .Net </p>
<p>Im sure it doesnt cover everything, but calulating interests and some other are no problem:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/daksysx3" rel="nofollow">http://msdn.microsoft.com/en-us/library/daksysx3</a>(VS.80).aspx</p>
<blockquote>
<p>Calculate depreciation. <strong>DDB, SLN, SYD</strong></p>
<p>Calculate future value.
<strong>FV</strong> </p>
<p>Calculate interest rate.
<strong>Rate</strong> </p>
<p>Calculate internal rate of return.
<strong>IRR, MIRR</strong></p>
<p>Calculate number of periods.
<strong>NPer</strong> </p>
<p>Calculate payments.
<strong>IPmt, Pmt, PPmt</strong></p>
<p>Calculate present value.
<strong>NPV, PV</strong></p>
</blockquote>