Malliavin_European_Greeks {greeks} | R Documentation |
Computes the Greeks of a European option with the Malliavin Monte Carlo Method in the Black Scholes model
Description
For details on the definition of Greeks see Greeks. For a description of Malliavin Monte Carlo Methods for Greeks see for example (Hudde & Rüschendorf, 2023).
Usage
Malliavin_European_Greeks(
initial_price = 100,
exercise_price = 100,
r = 0,
time_to_maturity = 1,
volatility = 0.3,
payoff = "call",
greek = c("fair_value", "delta", "vega", "theta", "rho", "gamma"),
model = "Black Scholes",
paths = 10000,
seed = 1,
antithetic = FALSE
)
Arguments
initial_price |
|
exercise_price |
|
r |
|
time_to_maturity |
|
volatility |
|
payoff |
|
greek |
|
model |
|
paths |
|
seed |
|
antithetic |
|
Value
Named vector containing the values of the Greeks specified in the
parameter greek
References
Hudde, A., & Rüschendorf, L. (2023). European and Asian Greeks for Exponential Lévy Processes. Methodol Comput Appl Probab, 25 (39). doi:10.1007/s11009-023-10014-5
See Also
BS_European_Greeks for the exact and fast implementation for call-, put- and digital payoff functions
Examples
Malliavin_European_Greeks(initial_price = 110,
exercise_price = 100, r = 0.02, time_to_maturity = 4.5,
volatility = 0.22, greek = c("fair_value", "delta", "rho"), payoff = "put")