asianbykv
Prices European geometric Asian options using Kemna-Vorst model
Description
returns prices of European geometric Asian options using the Kemna-Vorst model. Price
= asianbykv(RateSpec
,StockSpec
,OptSpec
,Strike
,Settle
,ExerciseDates
)
Note
Alternatively, you can use the Asian
object to price Asian
options. For more information, see Get Started with Workflows Using Object-Based Framework for Pricing Financial Instruments.
Examples
Compute the Price of an Asian Option Using the Kemna-Vorst Model
Define the RateSpec
.
StartDates = datetime(2013,1,1); EndDates = datetime(2014,1,1); Rates = 0.035; Basis = 1; RateSpec = intenvset('ValuationDate', StartDates, 'StartDates', StartDates, ... 'EndDates', EndDates,'Rates', Rates, 'Compounding', -1, 'Basis', Basis)
RateSpec = struct with fields:
FinObj: 'RateSpec'
Compounding: -1
Disc: 0.9656
Rates: 0.0350
EndTimes: 1
StartTimes: 0
EndDates: 735600
StartDates: 735235
ValuationDate: 735235
Basis: 1
EndMonthRule: 1
Define the StockSpec
for the asset.
AssetPrice = 100;
Sigma = 0.15;
DivType = 'continuous';
DivAmounts = 0.03;
StockSpec = stockspec(Sigma, AssetPrice, DivType, DivAmounts)
StockSpec = struct with fields:
FinObj: 'StockSpec'
Sigma: 0.1500
AssetPrice: 100
DividendType: {'continuous'}
DividendAmounts: 0.0300
ExDividendDates: []
Define the Asian 'call'
and 'put'
options.
Strike = 102; OptSpec = {'put'; 'call'}; Settle = datetime(2013,1,1); Maturity = datetime(2013,4,1);
Compute the European geometric Average Price for the Asian option using the Kemna-Vorst model.
Price = asiansensbykv(RateSpec, StockSpec, OptSpec, Strike, Settle, Maturity)
Price = 2×1
2.8881
0.9210
Input Arguments
StockSpec
— Stock specification for underlying asset
structure
Stock specification for underlying asset, specified using
StockSpec
obtained from stockspec
. For information on the stock specification, see stockspec
.
stockspec
can handle other types of
underlying assets. For example, stocks, stock indices and commodities. If dividends are
not specified in StockSpec
, dividends are assumed to be
0
.
Data Types: struct
OptSpec
— Definition of option
character vector with value'call'
or
'put'
| cell array of character vectors
Definition of option, specified as 'call'
or
'put'
using a NINST
-by-1
cell
array of character vectors.
Data Types: cell
| char
Strike
— Option strike price values
nonnegative integer | vector of nonnegative integers
Option strike price values, specified with nonnegative integers using a
NINST
-by-1
vector.
Data Types: single
| double
Settle
— Settlement dates or trade dates
datetime array | string array | date character vector
Settlement dates or trade dates for the Asian option, specified as a
NINST
-by-1
vector using a datetime array, string
array, or date character vectors.
To support existing code, asianbykv
also
accepts serial date numbers as inputs, but they are not recommended.
ExerciseDates
— European option exercise dates
datetime array | string array | date character vector
European option exercise dates, specified as
NINST
-by-1
vector using a datetime array, string
array, or date character vectors. For a European option, there is only one
ExerciseDates
on the option expiry date.
To support existing code, asianbykv
also
accepts serial date numbers as inputs, but they are not recommended.
Output Arguments
Price
— Expected prices of an Asian option
vector
Expected prices of the Asian option, returned as an
NINST
-by-1
vector.
More About
Asian Option
An Asian option is a path-dependent option with a payoff linked to the average value of the underlying asset during the life (or some part of the life) of the option.
Asian options are similar to lookback options in that there are two types of Asian options: fixed (average price option) and floating (average strike option). Fixed Asian options have a specified strike, while floating Asian options have a strike equal to the average value of the underlying asset over the life of the option. For more information, see Asian Option.
Version History
Introduced in R2013bR2022b: Serial date numbers not recommended
Although asianbykv
supports serial date numbers,
datetime
values are recommended instead. The
datetime
data type provides flexible date and time
formats, storage out to nanosecond precision, and properties to account for time
zones and daylight saving time.
To convert serial date numbers or text to datetime
values, use the datetime
function. For example:
t = datetime(738427.656845093,"ConvertFrom","datenum"); y = year(t)
y = 2021
There are no plans to remove support for serial date number inputs.
See Also
asiansensbykv
| asianbycrr
| intenvset
| stockspec
| asianbyls
| asianbylevy
| Asian
Topics
External Websites
Ouvrir l'exemple
Vous possédez une version modifiée de cet exemple. Souhaitez-vous ouvrir cet exemple avec vos modifications ?
Commande MATLAB
Vous avez cliqué sur un lien qui correspond à cette commande MATLAB :
Pour exécuter la commande, saisissez-la dans la fenêtre de commande de MATLAB. Les navigateurs web ne supportent pas les commandes MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)