Esempio n. 1
0
 //! \name Date calculations
 /*! This method returns a schedule of fixing dates between start and end. */
 public Schedule fixingSchedule(Date start, Date end)
 {
     return(new MakeSchedule().from(Utils.previousWednesday(start))
            .to(Utils.nextWednesday(end))
            .withFrequency(Frequency.Weekly)
            .withCalendar(fixingCalendar_)
            .withConvention(BusinessDayConvention.Following)
            .forwards()
            .value());
 }