-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
2,393 additions
and
953 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,36 @@ | ||
QLNet 1.13.0 | ||
QLNet 1.13.1 | ||
========================= | ||
|
||
QLNet 1.13.0 | ||
Mayor changes <https://github.com/amaggiulli/QLNet/milestone/4?closed=1>. | ||
QLNet 1.13.1 | ||
Mayor changes <https://github.com/amaggiulli/QLNet/milestone/5?closed=1>. | ||
A detailed list of changes is available in ChangeLog.txt. | ||
|
||
FRAMEWORK | ||
|
||
+ Updated to .NET 7.0 / netstandard 2.0 | ||
+ Removed AStyle formatting for more standard ediconfig setting | ||
+ Updated to .NET 8.0 | ||
|
||
PRICING ENGINES | ||
INSTRUMENTS | ||
|
||
+ Fixed MCDiscreteAveragingAsianEngine timeGrid and ArithmeticAPOPathPricer path value retrieval thanks @mookid8000 | ||
|
||
CASHFLOWS | ||
|
||
+ Added new CashFlows method to return both accrued days and accrued amount. | ||
+ Fixed DividendVanillaOption Engine bug, thx to Lorenzo Di Puccio for reporting it. | ||
+ Updated callable bonds. | ||
+ Added Bond Equivalent Yield calculation. | ||
+ Added Futures Type - Custom, thx @ninetiger and Xiao Gong | ||
|
||
INDEXES | ||
|
||
+ Added SOFR Index | ||
+ Added CAD-CORRA overnight index, thx Konstantin Novitsky | ||
|
||
CALENDARS | ||
|
||
+ Support New Zealand's new publish holiday: Matariki holiday, thanks @ninetiger | ||
+ Added 2023-12-15 as South African public holiday, thx Francois Botha | ||
+ Added early close logic for US bond market. | ||
+ Updated several caledars up to 2024 | ||
+ Fixed Aboriginal people day in Chile calendar, thx @bet0x10 | ||
|
||
MISC | ||
|
||
+ Added batch calculations | ||
+ Added Compounded Then Simple calculation. | ||
|
||
TIME | ||
|
||
+ Refactoring DayCounters | ||
+ Added Actual/366 daycounter. | ||
+ Added Actual364, Actual36525 and Thirty365 daycounters. | ||
+ Refactoring Calendars | ||
+ Added Cyprus and Greece calendars, thanks @pamboscy | ||
+ Fixed Schedule until method. | ||
+ Updated several caledars up to 2023 | ||
|
||
+ Fixd Schedule.previousDate and Schedule.nextDate, thx Francois Botha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
Copyright (C) 2024 Konstantin Novitsky ([email protected]) | ||
This file is part of QLNet Project https://github.com/amaggiulli/qlnet | ||
QLNet is free software: you can redistribute it and/or modify it | ||
under the terms of the QLNet license. You should have received a | ||
copy of the license along with this program; if not, license is | ||
available at <https://github.com/amaggiulli/QLNet/blob/develop/LICENSE>. | ||
QLNet is a based on QuantLib, a free-software/open-source library | ||
for financial quantitative analysts and developers - http://quantlib.org/ | ||
The QuantLib license is available online at http://quantlib.org/license.shtml. | ||
This program is distributed in the hope that it will be useful, but WITHOUT | ||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
FOR A PARTICULAR PURPOSE. See the license for more details. | ||
*/ | ||
|
||
namespace QLNet | ||
{ | ||
/*! CORRA (Canadian Overnight Repo Rate Average) rate fixed by the RBA. | ||
See <https://www.isda.org/2023/10/16/overview-of-the-canadian-derivatives-market/>. | ||
*/ | ||
public class Corra : OvernightIndex | ||
{ | ||
public Corra(Handle<YieldTermStructure> h = null) | ||
: base("Corra", 0, new CADCurrency(), new Canada(), new Actual365Fixed(), | ||
h ?? new Handle<YieldTermStructure>()) | ||
{ } | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.