Skip to content

Commit 3d001de

Browse files
committed
Replace ESTER with ESTR from QL
1 parent cf20cfd commit 3d001de

7 files changed

Lines changed: 2 additions & 78 deletions

File tree

OREData/ored/utilities/indexparser.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
#include <qle/indexes/ibor/dkkcibor.hpp>
6969
#include <qle/indexes/ibor/dkkcita.hpp>
7070
#include <qle/indexes/ibor/dkkois.hpp>
71-
#include <qle/indexes/ibor/ester.hpp>
7271
#include <qle/indexes/ibor/hkdhibor.hpp>
7372
#include <qle/indexes/ibor/hkdhonia.hpp>
7473
#include <qle/indexes/ibor/hufbubor.hpp>
@@ -311,7 +310,7 @@ boost::shared_ptr<IborIndex> parseIborIndex(const string& s, string& tenor, cons
311310
// Map from our _unique internal name_ to an overnight index
312311
static map<string, boost::shared_ptr<OvernightIndex>> onIndices = {
313312
{"EUR-EONIA", boost::make_shared<Eonia>()},
314-
{"EUR-ESTER", boost::make_shared<Ester>()},
313+
{"EUR-ESTER", boost::make_shared<Estr>()},
315314
{"GBP-SONIA", boost::make_shared<Sonia>()},
316315
{"JPY-TONAR", boost::make_shared<Tonar>()},
317316
{"SGD-SORA", boost::make_shared<Sora>()},

OREData/test/indices.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ struct test_data_inf {
103103
static struct test_data index_data[] = {
104104
// parsing string, index name, tenor
105105
{"EUR-EONIA-1D", "EoniaON Actual/360", 1 * Days},
106-
{"EUR-ESTER", "EsterON Actual/360", 1 * Days},
106+
{"EUR-ESTER", "ESTRON Actual/360", 1 * Days},
107107
{"GBP-SONIA-1D", "SoniaON Actual/365 (Fixed)", 1 * Days},
108108
{"JPY-TONAR-1D", "TONARON Actual/365 (Fixed)", 1 * Days},
109109
{"CHF-TOIS", "CHF-TOISTN Actual/360", 1 * Days},

QuantExt/qle/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ indexes/genericiborindex.cpp
8585
indexes/ibor/ameribor.cpp
8686
indexes/ibor/boebaserate.cpp
8787
indexes/ibor/brlcdi.cpp
88-
indexes/ibor/ester.cpp
8988
indexes/ibor/primeindex.cpp
9089
indexes/ibor/sofr.cpp
9190
indexes/ibor/sonia.cpp
@@ -493,7 +492,6 @@ indexes/ibor/demlibor.hpp
493492
indexes/ibor/dkkcibor.hpp
494493
indexes/ibor/dkkcita.hpp
495494
indexes/ibor/dkkois.hpp
496-
indexes/ibor/ester.hpp
497495
indexes/ibor/hkdhibor.hpp
498496
indexes/ibor/hkdhonia.hpp
499497
indexes/ibor/hufbubor.hpp

QuantExt/qle/indexes/ibor/ester.cpp

Lines changed: 0 additions & 30 deletions
This file was deleted.

QuantExt/qle/indexes/ibor/ester.hpp

Lines changed: 0 additions & 40 deletions
This file was deleted.

QuantExt/qle/quantext.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
#include <qle/indexes/ibor/dkkcibor.hpp>
117117
#include <qle/indexes/ibor/dkkcita.hpp>
118118
#include <qle/indexes/ibor/dkkois.hpp>
119-
#include <qle/indexes/ibor/ester.hpp>
120119
#include <qle/indexes/ibor/hkdhibor.hpp>
121120
#include <qle/indexes/ibor/hkdhonia.hpp>
122121
#include <qle/indexes/ibor/hufbubor.hpp>

QuantExt/test/index.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
#include <qle/indexes/ibor/dkkcibor.hpp>
3535
#include <qle/indexes/ibor/dkkcita.hpp>
3636
#include <qle/indexes/ibor/dkkois.hpp>
37-
#include <qle/indexes/ibor/ester.hpp>
3837
#include <qle/indexes/ibor/hkdhibor.hpp>
3938
#include <qle/indexes/ibor/hufbubor.hpp>
4039
#include <qle/indexes/ibor/idridrfix.hpp>
@@ -118,7 +117,6 @@ BOOST_AUTO_TEST_CASE(testIborIndex) {
118117
{ KRWKoribor(pd), "KRW-KORIBOR", SouthKorea(SouthKorea::Settlement).name(), KRWCurrency().name() },
119118
{ MYRKlibor(pd), "MYR-KLIBOR", Malaysia().name(), MYRCurrency().name() },
120119
{ TWDTaibor(pd), "TWD-TAIBOR", Taiwan().name(), TWDCurrency().name() },
121-
{ Ester(), "Ester", TARGET().name(), EURCurrency().name() },
122120
{ CNYRepoFix(pd), "CNY-REPOFIX", China(China::IB).name(), CNYCurrency().name() }
123121
};
124122

0 commit comments

Comments
 (0)