gitextract_v0ky_s4e/ ├── .config/ │ └── dotnet-tools.json ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── pull-requests.yml │ ├── push-master.yml │ └── release.yml ├── .gitignore ├── ExcelFinancialFunctions.sln ├── LICENSE.txt ├── PackageReadmeFile.md ├── README.md ├── RELEASE_NOTES.md ├── docs/ │ ├── compatibility.fsx │ ├── index.fsx │ └── openofficediff.fsx ├── src/ │ └── ExcelFinancialFunctions/ │ ├── ExcelFinancialFunctions.fsproj │ ├── ExcelFinancialFunctions.snk │ ├── bonds.fs │ ├── common.fs │ ├── daycountbasis.fs │ ├── depreciation.fs │ ├── irr.fs │ ├── loan.fs │ ├── misc.fs │ ├── oddbonds.fs │ ├── publicenums.fs │ ├── tbill.fs │ ├── testpreconditions.fs │ ├── tvm.fs │ └── wrapperdotnettype.fs └── tests/ ├── ExcelFinancialFunctions.ConsoleTests/ │ ├── ExcelFinancialFunctions.ConsoleTests.fsproj │ ├── MatrixTests.fs │ ├── README.md │ ├── SpotTests.fs │ ├── excel.fs │ ├── testinfrastructure.fs │ └── testsdef.fs ├── ExcelFinancialFunctions.ReleaseTests/ │ ├── ExcelFinancialFunctions.ReleaseTests.csproj │ ├── README.md │ └── SpotTests.cs └── ExcelFinancialFunctions.Tests/ ├── ExcelFinancialFunctions.Tests.fsproj ├── Program.fs ├── concurrencytests.fs ├── crosstests.fs ├── spottests.fs ├── testdata/ │ ├── accrint.test │ ├── accrintm.test │ ├── amordegrc.test │ ├── amorlinc.test │ ├── coupdays.test │ ├── coupdaysbs.test │ ├── coupdaysnc.test │ ├── coupncd.test │ ├── coupnum.test │ ├── couppcd.test │ ├── cumipmt.test │ ├── cumprinc.test │ ├── db.test │ ├── ddb.test │ ├── disc.test │ ├── dollarde.test │ ├── dollarfr.test │ ├── duration.test │ ├── effect.test │ ├── fv.test │ ├── fvschedule.test │ ├── intrate.test │ ├── ipmt.test │ ├── irr.test │ ├── ispmt.test │ ├── mduration.test │ ├── mirr.test │ ├── nominal.test │ ├── nper.test │ ├── npv.test │ ├── oddfprice.test │ ├── oddfyield.test │ ├── oddlprice.test │ ├── oddlyield.test │ ├── pduration.csv │ ├── pmt.test │ ├── ppmt.test │ ├── price.test │ ├── pricedisc.test │ ├── pricemat.test │ ├── pv.test │ ├── rate.test │ ├── received.test │ ├── rri.csv │ ├── sln.test │ ├── syd.test │ ├── tbilleq.test │ ├── tbillprice.test │ ├── tbillyield.test │ ├── testdata.xlsx │ ├── vdb.test │ ├── xirr.test │ ├── yearfrac.test │ ├── yielddisc.test │ ├── yieldmat.test │ ├── yieldnegative.csv │ └── yieldnegativefails.csv └── testutils.fs