ClassIntRate
Calculates the interest rate for a fully invested security based on settlement, maturity, investment, and redemption values.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IntRate : NumbersInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<double>NumbersInFunctionIntRate
Inherited Members
Constructors
IntRate()
Initializes a new INTRATE function instance for calculating security interest rates.
Declaration
public IntRate()
Fields
FunctionName
The name of the function.
Properties
ArgumentConversionRules
Specifies that numeric arguments exclude booleans during conversion.
Declaration
public override ArgumentConversionRules ArgumentConversionRules { get; }
Property Value
The argument conversion rules as ArgumentConversionRules.
Overrides
FunctionInfo
Provides metadata including category, description, and argument definitions.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<double>)
Evaluates the function by computing interest rate from settlement, maturity, investment, redemption, and day-count basis.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<double> context)
Parameters
context
FunctionEvaluationContext<double>
The context.
Returns
Functions result as RadExpression.
Overrides