/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* Copyright (C) 2004, 2007 StatPro Italia srl 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. */ #include namespace QuantLib { CliquetOption::CliquetOption( const boost::shared_ptr& process, const boost::shared_ptr& payoff, const boost::shared_ptr& maturity, const std::vector& resetDates, const boost::shared_ptr& engine) : OneAssetStrikedOption(process,payoff,maturity,engine), resetDates_(resetDates) {} void CliquetOption::setupArguments(PricingEngine::arguments* args) const { OneAssetStrikedOption::setupArguments(args); // set accrued coupon, last fixing, caps, floors CliquetOption::arguments* moreArgs = dynamic_cast(args); QL_REQUIRE(moreArgs != 0, "wrong engine type"); moreArgs->resetDates = resetDates_; } void CliquetOption::arguments::validate() const { OneAssetStrikedOption::arguments::validate(); boost::shared_ptr moneyness = boost::dynamic_pointer_cast(payoff); QL_REQUIRE(moneyness, "wrong payoff type"); QL_REQUIRE(moneyness->strike() > 0.0, "negative or zero moneyness given"); QL_REQUIRE(accruedCoupon == Null() || accruedCoupon >= 0.0, "negative accrued coupon"); QL_REQUIRE(localCap == Null() || localCap >= 0.0, "negative local cap"); QL_REQUIRE(localFloor == Null() || localFloor >= 0.0, "negative local floor"); QL_REQUIRE(globalCap == Null() || globalCap >= 0.0, "negative global cap"); QL_REQUIRE(globalFloor == Null() || globalFloor >= 0.0, "negative global floor"); QL_REQUIRE(!resetDates.empty(), "no reset dates given"); for (Size i = 0; i < resetDates.size(); i++) { QL_REQUIRE(exercise->lastDate() > resetDates[i], "reset date greater or equal to maturity"); QL_REQUIRE(i == 0 || resetDates[i] > resetDates[i-1], "unsorted reset dates"); } } }