Skip to content

Commit

Permalink
Overnight Rate Cap Floor Model (#2677)
Browse files Browse the repository at this point in the history
* overnight cap product

* tests

* javadoc

* line

* clean

* white spaces

* failing test for accrual
  • Loading branch information
yukiiwashita authored Oct 16, 2024
1 parent d24103f commit cfa248e
Show file tree
Hide file tree
Showing 14 changed files with 4,255 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import com.opengamma.strata.product.bond.CapitalIndexedBond;
import com.opengamma.strata.product.bond.FixedCouponBond;
import com.opengamma.strata.product.capfloor.IborCapFloor;
import com.opengamma.strata.product.capfloor.OvernightInArrearsCapFloor;
import com.opengamma.strata.product.cms.Cms;
import com.opengamma.strata.product.credit.Cds;
import com.opengamma.strata.product.credit.CdsIndex;
Expand Down Expand Up @@ -110,6 +111,12 @@ public final class ProductType
* A {@link IborCapFloor}.
*/
public static final ProductType IBOR_CAP_FLOOR = ProductType.of("IborCapFloor", "Cap/Floor");
/**
* A {@link OvernightInArrearsCapFloor}.
*/
public static final ProductType OVERNIGHT_IN_ARREARS_CAP_FLOOR = ProductType.of(
"OvernightInArrearsCapFloor",
"Overnight In Arrears Cap/Floor");
/**
* A {@link IborFuture}.
*/
Expand Down
Loading

0 comments on commit cfa248e

Please sign in to comment.