ODDLYIELD
Updated 2024-02-28 15:21:10.410000
Syntax
SELECT [westclintech].[wct].[ODDLYIELD] (
<@Settlement, datetime,>
,<@Maturity, datetime,>
,<@Last_interest, datetime,>
,<@Rate, float,>
,<@Pr, float,>
,<@Redemption, float,>
,<@Frequency, float,>
,<@Basis, nvarchar(4000),>)
Description
Use the scalar function ODDYIELD to calculate the yield of a security with an odd last coupon period. If the settlement date is less than the last coupon date there is no closed-form solution for calculating the yield; the solution is found by iteration. If the settlement date is greater than or equal to the last coupon date then the formula for yield is:
YIELD=\left(\frac{RV+C\times\Sigma_{i=1}^{NLC}\frac{DLC_1}{NLL_i}}{P+C\times\Sigma_{i=1}^{NCL}\frac{A_i}{NLL_i}}-1\right)\times\frac{F}{\Sigma_{i=1}^{NCL}\frac{DSC_i}{NLL_1}}
WhereRV= redemption valueC
100 * rate/frequencyF = frequencyP
priceNLC = the number of quasi-coupons from the last coupon date to the quasi-maturity dateDLCi = the number of from the previous coupon date to the lesser of the next coupon date and the maturity date in the ith quasi-coupon periodNLLi = the normal length in days of the full ith quasi-coupon period in the odd last periodDSCi = number of days from the settlement date (or beginning of the quasi-coupon period) to the next quasi-coupon within the odd period (or to redemption date) for the ith quasi-coupon periodAi = number of accrued days for the ith quasi-coupon within the odd period counting forward from the last interest date before redemption
Arguments
@Pr
the price of the security. @Pr is an expression of type float or of a type that can be implicitly converted to float.
@Basis
is the type of day count to use. @Basis is an expression of the character string data type category.
{"columns":[{"field":"@Basis","width":313},{"field":"Day count basis","width":277}],"rows":[{"@Basis":"0 , 'BOND'","Day count basis":"US (NASD) 30/360"},{"@Basis":"1 , 'ACTUAL'","Day count basis":"Actual/Actual"},{"@Basis":"2 , 'A360'","Day count basis":"Actual/360"},{"@Basis":"3 , 'A365'","Day count basis":"Actual/365"},{"@Basis":"4 , '30E/360 (ISDA)' , '30E/360' , 'ISDA' , '30E/360 ISDA' , 'EBOND'","Day count basis":"European 30/360"},{"@Basis":"5 , '30/360' , '30/360 ISDA' , 'GERMAN'","Day count basis":"30/360 ISDA"},{"@Basis":"6 , 'NL/ACT'","Day count basis":"No Leap Year/ACT"},{"@Basis":"7 , 'NL/365'","Day count basis":"No Leap Year /365"},{"@Basis":"8 , 'NL/360'","Day count basis":"No Leap Year /360"},{"@Basis":"9 , 'A/364'","Day count basis":"Actual/364"},{"@Basis":"10 , 'BOND NON-EOM'","Day count basis":"US (NASD) 30/360 non-end-of-month"},{"@Basis":"11 , 'ACTUAL NON-EOM'","Day count basis":"Actual/Actual non-end-of-month"},{"@Basis":"12 , 'A360 NON-EOM'","Day count basis":"Actual/360 non-end-of-month"},{"@Basis":"13 , 'A365 NON-EOM'","Day count basis":"Actual/365 non-end-of-month"},{"@Basis":"14 , '30E/360 NON-EOM' , '30E/360 ICMA NON-EOM' , 'EBOND NON-EOM'","Day count basis":"European 30/360 non-end-of-month"},{"@Basis":"15 , '30/360 NON-EOM' , '30/360 ISDA NON-EOM' , 'GERMAN NON-EOM'","Day count basis":"30/360 ISDA non-end-of-month"},{"@Basis":"16 , 'NL/ACT NON-EOM'","Day count basis":"No Leap Year/ACT non-end-of-month"},{"@Basis":"17 , 'NL/365 NON-EOM'","Day count basis":"No Leap Year/365 non-end-of-month"},{"@Basis":"18 , 'NL/360 NON-EOM'","Day count basis":"No Leap Year/360 non-end-of-month"},{"@Basis":"19 , 'A/364 NON-EOM'","Day count basis":"Actual/364 non-end-of-month"}]}
@Frequency
the number of coupon payments per year. For annual payments, @Frequency = 1; for semi-annual, @Frequency = 2; for quarterly, @Frequency = 4; for bimonthly @Frequency = 6; for monthly @Frequency = 12. For bonds with @Basis = 'A/364' or 9, you can enter 364 for payments made every 52 weeks, 182 for payments made every 26 weeks, 91 for payments made every 13 weeks, 28 for payments made every 4 weeks, 14 for payments made every 2 weeks, and 7 for weekly payments. @Frequency is an expression of type float or of a type that can be implicitly converted to float.
@Rate
the security’s annual coupon rate. @Rate is an expression of type float or of a type that can be implicitly converted to float.
@Settlement
the settlement date of the security. @Settlement is an expression that returns a datetime or smalldatetime value, or a character string in date format.
@Last_interest
the last coupon date of the security prior to the maturity. The period from the last interest date until the maturity date defines the odd interest period. All previous coupon dates are assumed to occur at regular periodic intervals as defined by @Frequency. @Last_interest is an expression that returns a datetime or smalldatetime value, or a character string in date format.
@Maturity
the maturity date of the security. @Maturity is an expression that returns a datetime or smalldatetime value, or a character string in date format.
@Redemption
the security’s redemption value per 100 face value. @Redemption is an expression of type float or of a type that can be implicitly converted to float.
Return Type
float
Remarks
If @Settlement is NULL then @Settlement = GETDATE().
If @Rate is NULL then @Rate = 0.
If @Redemption is NULL then @Redemption = 100.
If @Frequency is NULL then @Frequency = 2.
If @Basis is NULL then @Basis = 0.
If @Frequency is any number other than 1, 2, 4, 6 or 12, or for @Basis = 'A/364' any number other than 1, 2, 4, 6 or 12 as well as 7, 14, 28, 91, 182 or 364 then ODDLYIELD returns an error.
If @Basis is invalid (see above list), ODDLYIELD returns an error.
If @Maturity is NULL then an error is returned.
If @Last_interest is NULL then an error is returned.
If @Price is NULL than an error is returned.
Examples
This is a bond with an odd short last coupon period where the settlement date in the last coupon period.
SELECT wct.ODDLYIELD( '2014-10-01', --@Settlement
'2014-12-15', --@Maturity
'2014-09-15', --@Last_interest
0.0225, --@Rate
100.445329, --@Price
100, --@Redemption
2, --@Frequency
1 --@Basis
) as Yield;
This produces the following result.
{"columns":[{"field":"Yield","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"Yield":"0.00100000580324695"}]}
This is a bond with an odd long last coupon period with a settlement date in the last coupon period.
SELECT wct.ODDLYIELD( '2014-10-01', --@Settlement
'2014-12-15', --@Maturity
'2014-03-15', --@Last_interest
0.0225, --@Rate
100.445096, --@Price
100, --@Redemption
2, --@Frequency
1 --@Basis
) as Yield;
This produces the following result.
{"columns":[{"field":"Yield","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"Yield":"0.00100000422761388"}]}
This is a bond with an odd short last coupon with a settlement date prior to the last coupon date.
SELECT wct.ODDLYIELD( '2014-10-01', --@Settlement
'2034-12-15', --@Maturity
'2034-09-15', --@Last_interest
0.0425, --@Rate
103.443238, --@Price
100, --@Redemption
2, --@Frequency
1 --@Basis
) as Yield;
This produces the following result.
{"columns":[{"field":"Yield","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"Yield":"0.039999999949176"}]}
This is a bond with an odd long last coupon period with a settlement date prior to the last coupon date.
SELECT wct.ODDLYIELD( '2014-10-01', --@Settlement
'2034-12-15', --@Maturity
'2034-03-15', --@Last_interest
0.0425, --@Rate
103.433687, --@Price
100, --@Redemption
2, --@Frequency
1 --@Basis
) as Yield;
This produces the following result.
{"columns":[{"field":"Yield","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"Yield":"0.0400000001216811"}]}
This is an example of a bond paying interest every 26 weeks.
SELECT wct.ODDLYIELD( '2014-10-04', --@Settlement
'2014-12-15', --@Maturity
'2014-06-01', --@Last_interest
0.1250, --@Rate
100.198974906573, --@Price
100, --@Redemption
182, --@Frequency
9 --@Basis
) as Yield;
This produces the following result.
{"columns":[{"field":"Yield","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"Yield":"0.110000000000015"}]}
See Also
ODDFPRICE - Price of a security with an odd first coupon
ODDLINT - Accrued interest for a bond with an odd last coupon
ODDLYIELD - Calculate the YIELD with an odd last period
OFLPRICE - Price of a security with an odd last coupon.
OLCCONVEXITY - Convexity of a bond with and odd last coupon
OLCDURATION - Duration of a bond with an odd last coupon
OLCFACTORS - Returns the components of the ODDLPRICE equation
OLCMDURATION - Modified duration of a bond with an odd last coupon
PRICE - Price of a bond paying regular periodic interest
PRICESTEP - Calculate the Price of a security with step-up rates