Logo
Fully annotated reference manual - version 1.8.12
Loading...
Searching...
No Matches
equitybarrieroption.hpp
Go to the documentation of this file.
1/*
2 Copyright (C) 2020 Quaternion Risk Management Ltd
3 All rights reserved.
4
5 This file is part of ORE, a free-software/open-source library
6 for transparent pricing and risk analysis - http://opensourcerisk.org
7 ORE is free software: you can redistribute it and/or modify it
8 under the terms of the Modified BSD License. You should have received a
9 copy of the license along with this program.
10 The license is also available online at <http://opensourcerisk.org>
11 This program is distributed on the basis that it will form a useful
12 contribution to risk analytics and model standardisation, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the license for more details.
15 */
16
17/*! \file ored/portfolio/equitybarrieroption.hpp
18 \brief Equity Barrier Option data model and serialization
19 \ingroup portfolio
20*/
21
22#pragma once
23
28
29#include <ql/instruments/barriertype.hpp>
30
31namespace ore {
32namespace data {
33using std::string;
34
35//! Serializable EQ Barrier Option
36/*!
37 \ingroup tradedata
38*/
40public:
41 //! Default constructor
42 EquityBarrierOption() : ore::data::Trade("EquityBarrierOption"), EquityOptionWithBarrier("") {}
43 //! Constructor
45 std::string calendar, EquityUnderlying equityUnderlying, QuantLib::Currency currency,
46 QuantLib::Real quantity,TradeStrike strike)
47 : ore::data::Trade("EquityBarrierOption", env),
48 EquityOptionWithBarrier("", env, option, barrier, startDate, calendar, equityUnderlying, currency,
49 quantity, strike) {}
50
51 void checkBarriers() override;
52
53 //! create the pricing engines
54 QuantLib::ext::shared_ptr<QuantLib::PricingEngine>
55 vanillaPricingEngine(const QuantLib::ext::shared_ptr<EngineFactory>& ef, const QuantLib::Date& expiryDate,
56 const QuantLib::Date& paymentDate = QuantLib::Date()) override;
57 QuantLib::ext::shared_ptr<QuantLib::PricingEngine>
58 barrierPricingEngine(const QuantLib::ext::shared_ptr<EngineFactory>& ef, const QuantLib::Date& expiryDate,
59 const QuantLib::Date& paymentDate = QuantLib::Date()) override;
60};
61
62} // namespace data
63} // namespace oreplus
Barrier Option data model and serialization.
Serializable obejct holding barrier data.
Definition: barrierdata.hpp:34
const BarrierData & barrier() const
const QuantLib::Date & startDate() const
const ore::data::OptionData & option() const
const QuantLib::Calendar & calendar() const
Serializable object holding generic trade data, reporting dimensions.
Definition: envelope.hpp:51
Serializable EQ Barrier Option.
EquityBarrierOption(Envelope &env, OptionData option, BarrierData barrier, QuantLib::Date startDate, std::string calendar, EquityUnderlying equityUnderlying, QuantLib::Currency currency, QuantLib::Real quantity, TradeStrike strike)
Constructor.
QuantLib::ext::shared_ptr< QuantLib::PricingEngine > barrierPricingEngine(const QuantLib::ext::shared_ptr< EngineFactory > &ef, const QuantLib::Date &expiryDate, const QuantLib::Date &paymentDate=QuantLib::Date()) override
EquityBarrierOption()
Default constructor.
QuantLib::ext::shared_ptr< QuantLib::PricingEngine > vanillaPricingEngine(const QuantLib::ext::shared_ptr< EngineFactory > &ef, const QuantLib::Date &expiryDate, const QuantLib::Date &paymentDate=QuantLib::Date()) override
create the pricing engines
void checkBarriers() override
check validity of barriers
const QuantLib::Real strike() override
Serializable object holding option data.
Definition: optiondata.hpp:42
Trade base class.
Definition: trade.hpp:55
@ data
Definition: log.hpp:77
Serializable Credit Default Swap.
Definition: namespaces.docs:23
trade option data model and serialization
base trade data model and serialization