Package org.jquantlib.indexes

Examples of org.jquantlib.indexes.InterestRateIndex.fixing()


      if (fixingDates.get(i+1).lt(startDate) || nextValueDate.le(startDate)) {
        continue;
      }
     
      d2 = Date.min(nextValueDate, endDate);
      avgBMA += (index.fixing(fixingDates.get(i))) * (d2.sub(d1));
      days += d2.sub(d1);
     
      d1 = d2;
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.