Logo

SQL Server BinaryBarrierOnly Function

Updated 2024-02-13 20:43:43.103000

Description

Use BinaryBarrierOnly to calculate the price or Greeks for binary barrier options having payoffs that are received only at expiration. Down-and-in and up-and-in options have positive payoffs if the barrier is breached at some time before expiration. Down-and-out and up-and-out options have positive payoffs if the barrier is not breached before expiration.

BinaryBarrierOnly valuations are based on the formulae published by Mark Rubinstein and Eric Reiner in 1991. In their July 31, 1991 paper Binary Options, they enumerated 28 different types of binary barrier options. This function deals with options numbers 5–12:

    (5) down-and-in cash-(at-expiry)-or-nothing;

    (6) up-and-in cash-(at-expiry)-or-nothing;

    (7) down-and-in asset-(at-expiry)-or-nothing;

    (8) up-and-in asset-(at-expiry)-or-nothing;

    (9) down-and-out cash-or-nothing;

    (10) up-and-out cash-or-nothing;

    (11) down-and-out asset-or-nothing; and

    (12) up-and-out asset-or-nothing.

Syntax

SELECT [westclintech].[wct].[BinaryBarrierOnly](
  <@BarrierType, nvarchar(4000),>
 ,<@CashOrNothing, bit,>
 ,<@AssetPrice, float,>
 ,<@StrikePrice, float,>
 ,<@BarrierPrice, float,>
 ,<@Rebate, float,>
 ,<@TimeToMaturity, float,>
 ,<@RiskFreeRate, float,>
 ,<@DividendRate, float,>
 ,<@Volatility, float,>
 ,<@ReturnValue, nvarchar(4000),>)

Arguments

@BarrierType

identifies the type of barrier as 'UI' (Up-and-In), 'UO' (Up-and-Out), 'DI' (Down-and-In), or 'DO' (Down-and-out). @BarrierType must be of a type nvarchar or of a type that implicitly converts to nvarchar.

@CashOrNothing

identifies the option as either a cash-or-nothing ('True') or asset-or-nothing ('False') binary barrier. @CashOrNothing is an expression of type bit or of a type that can be implicitly converted to bit.

@AssetPrice

the price of the underlying asset. @AssetPrice is an expression of type float or of a type that can be implicitly converted to float.

@StrikePrice

the exercise price of the option. @StrikePrice is an expression of type float or of a type that can be implicitly converted to float.

@BarrierPrice

For a knock-in option, @BarrierPrice is the value at which the option comes into existence if the @AssetPrice crosses the barrier. For a knock-out option, @BarrierPrice is the value at which the option is extinguished if the @AssetPrice crosses the barrier. @BarrierPrice must be of a type float or of a type that implicitly converts to float.

@Rebate

An amount paid to the buyer of the option in the event that the barrier is never breached. @Rebate must be of a type float or of a type that implicitly converts to float.

@TimeToMaturity

the time to expiration of the option, expressed in years. @TimeToMaturity is an expression of type float or of a type that can be implicitly converted to float.

@RiskFreeRate

the continuously compounded zero coupon risk-free rate over the life of the option. @RiskFreeRate is an expression of type float or of a type that can be implicitly converted to float.

@DividendRate

the continuously compounded zero coupon dividend rate over the life of the option. For currency options, @DividendRate should be the foreign risk-free zero coupon rate. @DividendRate is an expression of type float or of a type that can be implicitly converted to float.

@Volatility

the volatility of the relative price change of the underlying asset. @Volatility is an expression of type float or of a type that can be implicitly converted to float.

@ReturnValue

identifies the calculation to be performed. @ReturnValue is an expression of type nvarchar or of a type that can be implicitly converted to nvarchar. For a full description of the return values, see BINARYBARRIERONLYPRICENGREEKS.@ReturnValue is not case-sensitive. The following values are acceptable for @ReturnValue:

@ReturnValueReturns
'P','PRICE'Price
'D','DELTA'Delta
'G','GAMMA'Gamma
'T','THETA'Theta
'V','VEGA'Vega
'R','RHO'Rho
'L','LAMBDA'Lambda
'DDDV','VANNA','DVEGADSPOT','DDELTADVOL'DdeltaDvol
'DVV','DDELTADVOLDVOL'DdeltaDvolDvol
'DT','CHARM','DDELTADTIME'DdeltaDtime
'GV','ZOMMA','DGAMMADVOL'DgammaDvol
'GP','GAMMAP'GammaP
'DVDV','VOMMA','VOLGA','DVEGADVOL'DvegaDvol
'VP','VEGAP'VegaP
'PR2','PHIRHO2'PhiRho2
'S','SPEED','DGAMMADSPOT'DgammaDspot
'DX','DELTAX'Delta X
'GX','GAMMAX','DX','RND','RISKNEUTRALDENSITY'Risk Neutral Density
'VVV','ULTIMA','DVOMMADVOL'DvommaDvol
'VT','VETA','DVEGADTIME'DvegaDtime
'GT','COLOR','DGAMMADTIME'DgammaDtime
'FR','RHOFUTURESOPTIONS','FUTURESOPTIONSRHO'Futures Options Rho
'B','CARRYSENSITIVITY'Carry Sensitivity

Return Type

float

Remarks

@Volatility must be greater than zero (@Volatility > 0).

@TimeToMaturity must be greater than zero (@TimeToMaturity > 0).

@AssetPrice must be greater than zero (@AssetPrice > 0).

@StrikePrice must be greater than zero (@StrikePrice > 0).

If @ReturnValue is NULL, then @ReturnValue is set to 'P'.

If @DividendRate is NULL then @DividendRate = 0.

If @RiskFreeRate is NULL @RiskFreeRate = 0.

@BarrierPrice must be greater than zero (@BarrierPrice > 0).

@Rebate must be greater than or equal to zero (@Rebate >= 0).

If @Rebate is NULL, then @Rebate = 0.

@BarrierPrice assumes continuous monitoring.

To convert a non-continuous @BarrierPrice use the ADJUSTEDBARRIER function.

Use BINARYBARRIERONLYPRICENGREEKS to calculate the price and all the Greeks.

Examples

In this example we calculate the theoretical value (price) of a down-and-in cash-(at-expiry)-or-nothing option.

SELECT wct.BinaryBarrierOnly(   'DI',   --BarrierType
                                'True', --CashOrNothing
                                100,    --AssetPrice
                                100,    --StrikePrice
                                92,     --BarrierPrice
                                2,      --Rebate
                                .50,    --TimeToMaturity
                                .10,    --RiskFreeRate
                                .05,    --DividendRate
                                .20,    --Volatility
                                'P'     --ReturnValue
                            ) as Price;

This produces the following result.

Price
0.990650335835426

This SQL returns delta for the same option.

SELECT wct.BinaryBarrierOnly(   'DI',   --BarrierType
                                'True', --CashOrNothing
                                100,    --AssetPrice
                                100,    --StrikePrice
                                92,     --BarrierPrice
                                2,      --Rebate
                                .50,    --TimeToMaturity
                                .10,    --RiskFreeRate
                                .05,    --DividendRate
                                .20,    --Volatility
                                'D'     --ReturnValue
                            ) as 'Delta';

This produces the following result.

Delta
-0.0921821992078131

This SELECT statement reproduces the table for cash-or-nothing where Call/Put = Both from the Binary Options paper by Mark Rubenstein and Eric Reiner, July 31, 1991.

SELECT *
FROM
(
    SELECT 'OUT' as [OUT/IN],
           n.T,
           n2.H,
           wct.BinaryBarrierOnly(   CASE
                                        WHEN n2.H <= 100 THEN
                                            'DO'
                                        ELSE
                                            'UO'
                                    END,
                                    'True',
                                    100,
                                    100,
                                    n2.H,
                                    2,
                                    n.T,
                                    .10,
                                    .05,
                                    .20,
                                    'P'
                                ) as Price
    FROM
    (
        VALUES
            (.05),
            (.50),
            (.95)
    ) n (T)
        CROSS APPLY
    (
        VALUES
            (92),
            (96),
            (100),
            (104),
            (108)
    ) n2 (H)
    UNION ALL
    SELECT 'IN',
           n.T,
           n2.H,
           wct.BinaryBarrierOnly(   CASE
                                        WHEN n2.H <= 100 THEN
                                            'DI'
                                        ELSE
                                            'UI'
                                    END,
                                    'True',
                                    100,
                                    100,
                                    n2.H,
                                    2,
                                    n.T,
                                    .10,
                                    .05,
                                    .20,
                                    'P'
                                ) as Price
    FROM
    (
        VALUES
            (.05),
            (.50),
            (.95)
    ) n (T)
        CROSS APPLY
    (
        VALUES
            (92),
            (96),
            (100),
            (104),
            (108)
    ) n2 (H)
) D
PIVOT
(
    SUM(Price)
    for T in ([.05], [.50], [.95])
) as P
ORDER BY 1;

Here are the results of this query.

OUT/INH.05.50.95
IN920.1163327415151030.9906503358354261.13926655655622
IN960.6972065349761011.424350486934731.46893372615867
IN1001.990024958385361.902458849001431.81874586893646
IN1040.7795677654569511.52952208970691.57190933249169
IN1080.1796986929527761.179427429808841.33149478308123
OUT921.873692216870260.9118085131660020.679479312380241
OUT961.292818423409260.4781083620667010.349812142777789
OUT100000
OUT1041.210457192928410.3729367592945330.246836536444773
OUT1081.810326265432590.7230314191925910.487251085855231

This SELECT statement reproduces the table for asset-or-nothing where Call/Put = Both from the Binary Options paper by Mark Rubenstein and Eric Reiner, July 31, 1991.

SELECT *
FROM
(
    SELECT 'OUT' as [OUT/IN],
           n.T,
           n2.H,
           wct.BinaryBarrierOnly(   CASE
                                        WHEN n2.H <= 100 THEN
                                            'DO'
                                        ELSE
                                            'UO'
                                    END,
                                    'False',
                                    100,
                                    100,
                                    n2.H,
                                    n2.H,
                                    n.T,
                                    .10,
                                    .05,
                                    .20,
                                    'P'
                                ) as Price
    FROM
    (
        VALUES
            (.05),
            (.50),
            (.95)
    ) n (T)
        CROSS APPLY
    (
        VALUES
            (92),
            (96),
            (100),
            (104),
            (108)
    ) n2 (H)
    UNION ALL
    SELECT 'IN',
           n.T,
           n2.H,
           wct.BinaryBarrierOnly(   CASE
                                        WHEN n2.H <= 100 THEN
                                            'DI'
                                        ELSE
                                            'UI'
                                    END,
                                    'False',
                                    100,
                                    100,
                                    n2.H,
                                    n2.H,
                                    n.T,
                                    .10,
                                    .05,
                                    .20,
                                    'P'
                                ) as Price
    FROM
    (
        VALUES
            (.05),
            (.50),
            (.95)
    ) n (T)
        CROSS APPLY
    (
        VALUES
            (92),
            (96),
            (100),
            (104),
            (108)
    ) n2 (H)
) D
PIVOT
(
    SUM(Price)
    for T in ([.05], [.50], [.95])
) as P
ORDER BY 1;

Here are the results of this query.

OUT/INH.05.50.95
IN925.3549768334672946.30137592857654.2277320498817
IN9633.508149250301569.747093357146473.4112441588757
IN10099.75031223974697.530991202833395.3610473132626
IN10440.589981923545681.152649959197385.1258322342053
IN1089.7109777432796464.746428842761474.4634839727713
OUT9294.395335406278751.229615274257241.1333152633809
OUT9666.242162989444527.783897845686921.9498031543869
OUT100000
OUT10459.160330316200416.378341243635910.2352150790573
OUT10890.039334496466432.784562360071920.8975633404914