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

net.finmath.equities.pricer.EquityValuationRequest Maven / Gradle / Ivy

Go to download

finmath lib is a Mathematical Finance Library in Java. It provides algorithms and methodologies related to mathematical finance.

The newest version!
package net.finmath.equities.pricer;

import java.util.ArrayList;

import net.finmath.equities.products.Option;

/**
 * Class to store a pricing request handed to implementations of the IOptionPricer interface.
 *
 * @author Andreas Grotz
 */

public class EquityValuationRequest {

	enum CalculationRequestType
	{
		Price,
		EqDelta,
		EqGamma,
		EqVega,
		Theta,
	}

	private final Option option;
	private final ArrayList calcsRequested;

	public EquityValuationRequest(final Option option, final ArrayList calcsRequested)
	{
		this.option = option;
		this.calcsRequested = calcsRequested;
	}

	public Option getOption() {
		return option;
	}

	public ArrayList getCalcsRequested() {
		return calcsRequested;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy