org_isda_cdm.CalculationMethodEnum.CalculationMethodEnum.go Maven / Gradle / Ivy
/**
* This file is auto-generated from the ISDA Common Domain Model, do not edit.
* Version: 6.0.0-dev.82
*/
package CalculationMethodEnum
import . "org_isda_cdm"
/**
* What calculation type is required, averaging or compounding. This enumeration is used to represent the definitions of modular calculated rates as described in the 2021 ISDA Definitions, section 7.
*/
const (
/**
* Averaging, i.e. arithmetic averaging.
*/
AVERAGING CalculationMethodEnum = iota + 1
/**
* A rate based on an index that is computed by a rate administrator. The user is responsible for backing out the rate by applying a simple formula.
*/
COMPOUNDED_INDEX CalculationMethodEnum = iota + 1
/**
* Compounding, i.e. geometric averaging following an ISDA defined formula.
*/
COMPOUNDING CalculationMethodEnum = iota + 1
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy