Estimates for excess-loss premiums using EPD estimates
Estimate premiums of excess-loss reinsurance with retention R and limit L using EPD estimates.
ExcessEPD(data, gamma, kappa, tau, R, L = Inf, warnings = TRUE, plot = TRUE, add = FALSE, main = "Estimates for premium of excess-loss insurance", ...)
data |
Vector of n observations. |
gamma |
Vector of n-1 estimates for the EVI, obtained from |
kappa |
Vector of n-1 estimates for κ, obtained from |
tau |
Vector of n-1 estimates for τ, obtained from |
R |
The retention level of the (re-)insurance. |
L |
The limit of the (re-)insurance, default is |
warnings |
Logical indicating if warnings are displayed, default is |
plot |
Logical indicating if the estimates should be plotted as a function of k, default is |
add |
Logical indicating if the estimates should be added to an existing plot, default is |
main |
Title for the plot, default is |
... |
Additional arguments for the |
We need that u ≥ X_{n-k,n}, the (k+1)-th largest observation.
If this is not the case, we return NA
for the premium. A warning will be issued in
that case if warnings=TRUE
.
The premium for the excess-loss insurance with retention R and limit L is given by
E(\min{(X-R)_+, L}) = Π(R) - Π(R+L)
where Π(u)=E((X-u)_+)=\int_u^{∞} (1-F(z)) dz is the premium of the excess-loss insurance with retention u. When L=∞, the premium is equal to Π(R).
We estimate Π by
\hat{Π}(u) = (k+1)/(n+1) \times (X_{n-k,n})^{1/\hat{γ}} \times ((1-\hat{κ}/\hat{γ})(1/\hat{γ}-1)^{-1}u^{1-1/\hat{γ}} + \hat{κ}/(\hat{γ}X_{n-k,n}^{\hat{τ}})(1/\hat{γ}-\hat{τ}-1)^{-1}u^{1+\hat{τ}-1/\hat{γ}})
with \hat{γ}, \hat{κ} and \hat{τ} the estimates for the parameters of the EPD.
See Section 4.6 of Albrecher et al. (2017) for more details.
A list with following components:
k |
Vector of the values of the tail parameter k. |
premium |
The corresponding estimates for the premium. |
R |
The retention level of the (re-)insurance. |
L |
The limit of the (re-)insurance. |
Tom Reynkens
Albrecher, H., Beirlant, J. and Teugels, J. (2017). Reinsurance: Actuarial and Statistical Aspects, Wiley, Chichester.
data(secura) # EPD estimator epd <- EPD(secura$size) # Premium of excess-loss insurance with retention R R <- 10^7 ExcessEPD(secura$size, gamma=epd$gamma, kappa=epd$kappa, tau=epd$tau, R=R, ylim=c(0,2*10^4))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.