Class SmartDerivativeContractScheduleGenerator

java.lang.Object
net.finmath.smartcontract.contract.SmartDerivativeContractScheduleGenerator

public class SmartDerivativeContractScheduleGenerator extends Object
Generates schedules for smart derivative contracts. The schedule consists of settlement, account access and margin checks.
Author:
Christian Fries
  • Method Details

    • getScheduleForBusinessDays

      public static SmartDerivativeContractSchedule getScheduleForBusinessDays(String calendar, LocalDate startDate, LocalDate maturity, LocalTime settlementTime, Duration accountAccessAllowedDuration)
      Create a daily event schedule, where accountAccessStart is one minute after settlementTime, accountAccessEnd is accountAccessAllowedDuration after accountAccessStart, marginCheckTime is one minute after accountAccessEnd.
      Parameters:
      calendar - A businessday calendar (e.g.: TARGET2)
      startDate - The start date.
      maturity - The maturity date.
      settlementTime - The settlement time.
      accountAccessAllowedDuration - The duration for account adjustment after settlement.
      Returns:
      A new schedule corresponding to the given meta data.
    • getScheduleForBusinessDays

      public static SmartDerivativeContractSchedule getScheduleForBusinessDays(String calendar, LocalDate startDate, LocalDate maturity, LocalTime settlementTime, LocalTime accountAccessAllowedStartTime, Duration accountAccessAllowedDuration, LocalTime marginCheckTime)