Excel Financial Functions
This is a .NET library that provides the full set of financial functions from Excel. It can be used from both F# and C# as well as from other .NET languages. The main goal for the library is compatibility with Excel, by providing the same functions, with the same behaviour.
Note though that this is not a wrapper over the Excel library; the functions have been re-implemented in managed code so that you do not need to have Excel installed to use this library.
PM> Install-Package ExcelFinancialFunctions
Example
This example demonstrates using the YIELD function to calculate bond yield.
1: 2: 3: 4: 5: 6: 7: |
|
Samples & documentation
The library comes with comprehensible documentation. The tutorials and articles are
automatically generated from *.fsx
files in the content folder. The API
reference is automatically generated from Markdown comments in the library implementation.
- API Reference contains automatically generated documentation for all types, modules and functions in the library. This includes the links to the Excel documentation.
- Excel Compatibility section explains the possible differences with Excel's results.
Contributing and copyright
The project is hosted on GitHub where you can report issues, fork the project and submit pull requests. If you're adding new public API, please also consider adding samples that can be turned into a documentation.
The library was originally developed by Luca Bolognese, the initial version can be downloaded here. It is available under Apache License, for more information see the License file in the GitHub repository.