Example #1
0
 public Integrand(Payoff payoff, double s0, double drift, double variance)
 {
     payoff_   = payoff;
     s0_       = s0;
     drift_    = drift;
     variance_ = variance;
 }
Example #2
0
 public Integrand(Payoff payoff, double s0, double drift, double variance)
 {
     payoff_ = payoff;
     s0_ = s0;
     drift_ = drift;
     variance_ = variance;
 }
Example #3
0
        public AmericanPathPricer(Payoff payoff, int polynomOrder, LsmBasisSystem.PolynomType polynomType)
        {
            scalingValue_ = 1;
            payoff_       = payoff;
            v_            = LsmBasisSystem.pathBasisSystem(polynomOrder, polynomType);

            if (!(polynomType == LsmBasisSystem.PolynomType.Monomial ||
                  polynomType == LsmBasisSystem.PolynomType.Laguerre ||
                  polynomType == LsmBasisSystem.PolynomType.Hermite ||
                  polynomType == LsmBasisSystem.PolynomType.Hyperbolic ||
                  polynomType == LsmBasisSystem.PolynomType.Chebyshev2th))
            {
                throw new ApplicationException("insufficient polynom type");
            }

            // the payoff gives an additional value
            v_.Add(this.payoff);

            StrikedTypePayoff strikePayoff = payoff_ as StrikedTypePayoff;

            if (strikePayoff != null)
            {
                scalingValue_ /= strikePayoff.strike();
            }
        }
Example #4
0
        public virtual void setupArguments(IPricingEngineArguments a)
        {
            OneAssetOption.Arguments args = a as OneAssetOption.Arguments;
            Utils.QL_REQUIRE(args != null, () => "incorrect argument type");

            exerciseDate_ = args.exercise.lastDate();
            payoff_       = args.payoff;
        }
Example #5
0
 public FdmLogInnerValue(Payoff payoff,
                         FdmMesher mesher,
                         int direction)
 {
     payoff_         = payoff;
     mesher_         = mesher;
     direction_      = direction;
     avgInnerValues_ = new List <double>();
 }
Example #6
0
        public virtual void setupArguments(IPricingEngineArguments a)
        {
            OneAssetOption.Arguments args = a as OneAssetOption.Arguments;
            if (args == null)
            {
                throw new ApplicationException("incorrect argument type");
            }

            exerciseDate_ = args.exercise.lastDate();
            payoff_       = args.payoff;
        }
Example #7
0
        public virtual void setupArguments(IPricingEngineArguments a)
        {
            OneAssetOption.Arguments args = a as OneAssetOption.Arguments;
            if (args == null)
            {
                throw new ApplicationException("incorrect argument type");
            }

            exerciseDate_      = args.exercise.lastDate();
            payoff_            = args.payoff;
            requiredGridValue_ = ((StrikedTypePayoff)payoff_).strike();
        }
		//protected Forward(DayCounter dayCounter, Calendar calendar, BusinessDayConvention businessDayConvention,
		//                  int settlementDays, Payoff payoff, Date valueDate, Date maturityDate,
		//                  Handle<YieldTermStructure> discountCurve = Handle<YieldTermStructure>()) {
		protected Forward(DayCounter dayCounter, Calendar calendar, BusinessDayConvention businessDayConvention,
						  int settlementDays, Payoff payoff, Date valueDate, Date maturityDate,
						  Handle<YieldTermStructure> discountCurve) {
			dayCounter_ = dayCounter;
			calendar_ = calendar;
			businessDayConvention_ = businessDayConvention;
			settlementDays_ = settlementDays;
			payoff_ = payoff;
			valueDate_ = valueDate;
			maturityDate_ = maturityDate;
			discountCurve_ = discountCurve;

			maturityDate_ = calendar_.adjust(maturityDate_, businessDayConvention_);

			Settings.registerWith(update);
			discountCurve_.registerWith(update);
		}
        //protected Forward(DayCounter dayCounter, Calendar calendar, BusinessDayConvention businessDayConvention,
        //                  int settlementDays, Payoff payoff, Date valueDate, Date maturityDate,
        //                  Handle<YieldTermStructure> discountCurve = Handle<YieldTermStructure>()) {
        protected Forward(DayCounter dayCounter, Calendar calendar, BusinessDayConvention businessDayConvention,
                          int settlementDays, Payoff payoff, Date valueDate, Date maturityDate,
                          Handle <YieldTermStructure> discountCurve)
        {
            dayCounter_            = dayCounter;
            calendar_              = calendar;
            businessDayConvention_ = businessDayConvention;
            settlementDays_        = settlementDays;
            payoff_        = payoff;
            valueDate_     = valueDate;
            maturityDate_  = maturityDate;
            discountCurve_ = discountCurve;

            maturityDate_ = calendar_.adjust(maturityDate_, businessDayConvention_);

            Settings.registerWith(update);
            discountCurve_.registerWith(update);
        }
Example #10
0
 public void visit(Payoff p) {
     throw new NotSupportedException("unsupported payoff type: " + p.name());
 }
Example #11
0
 public Option(Payoff payoff, Exercise exercise)
 {
     payoff_   = payoff;
     exercise_ = exercise;
 }
Example #12
0
 public PayoffWrapper(Option.Type type, double strike)
 {
     payoff_ = new PlainVanillaPayoff(type, strike);
 }
Example #13
0
 public void visit(Payoff p)
 {
     Utils.QL_FAIL("unsupported payoff type: " + p.name());
 }
Example #14
0
 public void visit(Payoff p)
 {
     throw new NotSupportedException("unsupported payoff type: " + p.name());
 }
Example #15
0
 public AverageBasketPayoff(Payoff p, Vector a) : base(p)
 {
     weights_ = a;
 }
Example #16
0
 public MinBasketPayoff(Payoff p) : base(p)
 {
 }
Example #17
0
 public SpreadBasketPayoff(Payoff p)
     : base(p)
 {
 }
Example #18
0
 public StrikedTypePayoff(Payoff p)
     : base((p as StrikedTypePayoff).type_)
 {
     strike_ = (p as StrikedTypePayoff).strike_;
 }
Example #19
0
 public HestonHullWhitePathPricer(double exerciseTime, Payoff payoff, HybridHestonHullWhiteProcess process)
 {
     exerciseTime_ = exerciseTime;
     payoff_       = payoff;
     process_      = process;
 }
Example #20
0
 protected BasketPayoff(Payoff p)
 {
     basePayoff_ = p;
 }
Example #21
0
 public BasketPayoff(Payoff p)
 {
     basePayoff_ = p;
 }
Example #22
0
 public MaxBasketPayoff(Payoff p) : base(p)
 {
 }
Example #23
0
 public Option(Payoff payoff, Exercise exercise)
 {
     payoff_ = payoff;
     exercise_ = exercise;
 }
Example #24
0
 public AverageBasketPayoff(Payoff p, int n) : base(p)
 {
     weights_ = new Vector(n, 1.0 / n);
 }
Example #25
0
 protected CurveDependentStepCondition(Payoff p)
 {
     curveItem_ = new PayoffWrapper(p);
 }
Example #26
0
 public MultiAssetOption(Payoff payoff, Exercise exercise) : base(payoff, exercise)
 {
 }
Example #27
0
 public PayoffWrapper(Payoff p)
 {
     payoff_ = p;
 }