Inheritance: QLNet.Patterns.DefaultObservable
Exemplo n.º 1
0
 public IndexedCashFlow(double notional,
                        Index index,
                        Date baseDate,
                        Date fixingDate,
                        Date paymentDate,
                        bool growthOnly = false)
 {
    notional_ = notional;
    index_=index;
    baseDate_ = baseDate;
    fixingDate_ = fixingDate;
    paymentDate_= paymentDate;
    growthOnly_ = growthOnly;
 }
Exemplo n.º 2
0
 public LastFixingQuote(Index index)
 {
     index_ = index;
      index_.registerWith(update);
 }