QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
multisteptarn.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3/*
4 Copyright (C) 2010 Mark Joshi
5
6 This file is part of QuantLib, a free-software/open-source library
7 for financial quantitative analysts and developers - http://quantlib.org/
8
9 QuantLib is free software: you can redistribute it and/or modify it
10 under the terms of the QuantLib license. You should have received a
11 copy of the license along with this program; if not, please email
12 <quantlib-dev@lists.sf.net>. The license is also available online at
13 <http://quantlib.org/license.shtml>.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the license for more details.
18*/
19
20#ifndef quantlib_multistep_tarn_hpp
21#define quantlib_multistep_tarn_hpp
22
23#include <ql/models/marketmodels/products/multiproductmultistep.hpp>
24
25namespace QuantLib {
26
28 public:
29 MultiStepTarn(const std::vector<Time>& rateTimes,
30 const std::vector<Real>& accruals,
31 const std::vector<Real>& accrualsFloating,
32 const std::vector<Time>& paymentTimes,
33 const std::vector<Time>& paymentTimesFloating,
34 Real totalCoupon,
35 const std::vector<Real>& strikes,
36 std::vector<Real> multipliers,
37 const std::vector<Real>& floatingSpreads);
39
40 std::vector<Time> possibleCashFlowTimes() const override;
41 Size numberOfProducts() const override;
43 void reset() override;
44 bool nextTimeStep(const CurveState& currentState,
45 std::vector<Size>& numberCashFlowsThisStep,
46 std::vector<std::vector<CashFlow> >& cashFlowsGenerated) override;
47 std::unique_ptr<MarketModelMultiProduct> clone() const override;
49 private:
50 std::vector<Real> accruals_;
51 std::vector<Real> accrualsFloating_;
52 std::vector<Time> paymentTimes_;
53 std::vector<Time> paymentTimesFloating_;
54 std::vector<Time> allPaymentTimes_;
56 std::vector<Real> strikes_;
57 std::vector<Real> multipliers_;
58 std::vector<Real> floatingSpreads_;
60
61 // things that vary in a path
64 };
65
66
67
68
69}
70
71#endif
Curve state for market-model simulations
Definition: curvestate.hpp:41
Multiple-step market-model product.
std::vector< Time > paymentTimes_
std::vector< Time > allPaymentTimes_
std::unique_ptr< MarketModelMultiProduct > clone() const override
returns a newly-allocated copy of itself
std::vector< Real > floatingSpreads_
std::vector< Real > strikes_
bool nextTimeStep(const CurveState &currentState, std::vector< Size > &numberCashFlowsThisStep, std::vector< std::vector< CashFlow > > &cashFlowsGenerated) override
return value indicates whether path is finished, TRUE means done
std::vector< Time > paymentTimesFloating_
std::vector< Time > possibleCashFlowTimes() const override
std::vector< Real > multipliers_
Size maxNumberOfCashFlowsPerProductPerStep() const override
Size numberOfProducts() const override
std::vector< Real > accruals_
void reset() override
during simulation put product at start of path
std::vector< Real > accrualsFloating_
QL_REAL Real
real number
Definition: types.hpp:50
std::size_t Size
size of a container
Definition: types.hpp:58
Definition: any.hpp:35