All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opengamma.strata.product.fx.FxTrade Maven / Gradle / Ivy

There is a newer version: 2.12.56
Show newest version
/*
 * Copyright (C) 2018 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.product.fx;

import com.opengamma.strata.product.PortfolioItemInfo;
import com.opengamma.strata.product.ProductTrade;

/**
 * A foreign exchange trade, such as an FX forward, FX spot or FX option.
 * 

* FX trades operate on two different currencies. * For example, it might represent the payment of USD 1,000 and the receipt of EUR 932. */ public interface FxTrade extends ProductTrade { @Override public abstract FxTrade withInfo(PortfolioItemInfo info); @Override public abstract FxProduct getProduct(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy