/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2003 Neil Firth Copyright (C) 2007 StatPro Italia srl Copyright (C) 2007 Joseph Wang This file is part of QuantLib, a free-software/open-source library for financial quantitative analysts and developers - http://quantlib.org/ QuantLib is free software: you can redistribute it and/or modify it under the terms of the QuantLib license. You should have received a copy of the license along with this program; if not, please email . The license is also available online at . 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. */ /*! \file basketoption.hpp \brief Basket option on a number of assets */ #ifndef quantlib_basket_option_hpp #define quantlib_basket_option_hpp #include #include namespace QuantLib { class BasketPayoff : public Payoff { private: boost::shared_ptr basePayoff_; public: BasketPayoff(const boost::shared_ptr &p) : basePayoff_(p) {} virtual ~BasketPayoff() {}; std::string name() const { return basePayoff_->name(); } std::string description() const { return basePayoff_->description(); } Real operator()(Real price) const { return (*basePayoff_)(price); } virtual Real operator()(const Array &a) const { return (*basePayoff_)(accumulate(a)); } virtual Real accumulate(const Array &a) const = 0; const boost::shared_ptr basePayoff() { return basePayoff_; } }; class MinBasketPayoff : public BasketPayoff { public: MinBasketPayoff(const boost::shared_ptr &p) : BasketPayoff(p) {} Real accumulate (const Array &a) const { return *std::min_element(a.begin(), a.end()); } }; class MaxBasketPayoff : public BasketPayoff { public: MaxBasketPayoff(const boost::shared_ptr &p) : BasketPayoff(p) {} Real accumulate (const Array &a) const { return *std::max_element(a.begin(), a.end()); } }; class AverageBasketPayoff : public BasketPayoff { public: AverageBasketPayoff(const boost::shared_ptr &p, const Array &a) : BasketPayoff(p), weights_(a) {} AverageBasketPayoff(const boost::shared_ptr &p, Size n) : BasketPayoff(p), weights_(n, 1.0/static_cast(n)) {} Real accumulate (const Array &a) const { return std::inner_product(weights_.begin(), weights_.end(), a.begin(), 0.0); } private: Array weights_; }; //! Basket option on a number of assets /*! \ingroup instruments \todo Replace with STL algorithms */ class BasketOption : public MultiAssetOption { public: class arguments; class engine; BasketOption(const boost::shared_ptr&, const boost::shared_ptr&, const boost::shared_ptr&, const boost::shared_ptr& engine = boost::shared_ptr()); void setupArguments(PricingEngine::arguments*) const; }; //! %Arguments for basket option calculation class BasketOption::arguments : public MultiAssetOption::arguments { public: arguments() {} void validate() const; }; //! %Basket-option %engine base class class BasketOption::engine : public GenericEngine {}; } #endif