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

net.finmath.montecarlo.interestrate.models.funding.FundingCapacity 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.montecarlo.interestrate.models.funding;

import net.finmath.stochastic.RandomVariable;

public interface FundingCapacity {

	/**
	 * Apply a new funding requirement to this funding capacity
	 * and return the associated DefaultFactors.
	 * 
	 * @param time The time at which the funding is required.
	 * @param fundingRequirement The required funding.
	 * @return A DefaultFactors that reflects the amount that has to be contracted to secure the funding.
	 */
	DefaultFactors getDefaultFactors(double time, RandomVariable fundingRequirement);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy