Download presentation
Presentation is loading. Please wait.
Published byJasmine Rynard Modified over 10 years ago
1
1 An Efficient and Easily Parallelizable Algorithm for Pricing Weather Derivatives Yusaku Yamamoto Dept. of Computational Science & Engineering Nagoya University LSSC05 Sozopol June 6-10, 2005
2
2 Outline of the talk 1. Introduction 2. Problem formulation 3. A new pricing algorithm based on the fast Gauss transform 4. Parallelization 5. Numerical results 6. Conclusion
3
3 1. Introduction Weather conditions greatly affect business activities. Excessive heat in summer Department stores: increase of air conditioning costs Electronics companies: larger sales of air conditioners Little snow In winter Hotels in ski areas: decrease of revenues Local governments: decrease of costs for removing snow Variation of revenues due to weather conditions = weather risks Financial products to reduce weather risks and stabilize the revenues Weather derivatives =
4
4 What is a weather derivative? Definition –A financial contract which allows the holder to receive a certain amount of money if predetermined weather conditions are met. Example of a temperature derivative –The holder will receive $10,000 for one day in July for which the maximum temperature is under 20C A manufacturer of air conditioners can use this derivative to compensate for a possible loss of revenues due to cool summer. Market of weather derivatives –$11 billion in Europe and the USA (in year 2002)
5
5 Specification of a temperature derivative Parameters defining a temperature derivative –Period of observation: N days from a specified date –Point of observation –Temperature index: W (C) –Strike value: S (C) –Tick value: k ($/C) –Kind: put or call –Derivative price: Q ($) Temperature indices –Average temperature –Maximum temperature –Cooling Degree Days (CDD) Payoff –call P call = k max(W – S, 0) –put P put = k max(S – W, 0) TiTi days N average temperature period of observation maximum temperature
6
6 CDD derivatives Definition –A temperature derivative on the CDD Cooling Degree Days defined by Properties –The payoff increases as the number of days for which T n > T increases and The difference T n > T increases. Application –Compensation for air-conditioning costs due to excessive heat, etc. T: reference temperature TiTi days N T We focus on the pricing of CDD derivatives n n
7
7 2. Problem formulation Principles for pricing –Construct a stochastic model describing the daily air temperature {T 1, T 2, …, T N } during the period of observation. –Compute the expectation value of the payoff P call under the stochastic model. –Add premium e to the result to get the derivative price: Q = E[P call ] + e. Stochastic models for daily air temperature –Historical model (Zeng, 2000) Determines T n by random sampling from the past data –Dischel model (Dischel, 1999) T n is assuemd to follow a non-stationary autoregressive model of order 1. –GARCH models (Cao & Wei, 1999) –Long-term memory models
8
8 The Dischel model The model –T n follows a non-stationary autoregressive model of order 1. T n = (1 – β)Θ n + βT n–1 + ε n Θ n temperature of the n-th day in an average year ε n N [μ σ 2 ], i. i. d. –Widely used for pricing as a simple yet effective model. Determination of the parameters –Parameters, and are determined from the past data by least squares fitting. –It is also possible to adjust, and to incorporate the long-term weather prediction (Egi et al., 2003).
9
9 Pricing by the Monte Carlo method Basic algorithm –Generate a large number of sample paths according to the temperature model. –Compute the expectation value as the average of payoff values over the sample paths. E[P call ] = (1/L) i=1 L P call (i) Advantages –Implementation is easy. –Various weather indices can be treated in a unified manner. –Embarrassingly parallel. TnTn days N T
10
10 Problems with the MC method Slow convergence –Requires 10 8 sample paths to compute the price to 3-digit accuracy. –The computation takes about 10 min on an average PC. Circumstances where the MC method is too slow –Real-time pricing –Pricing of a portfolio consisting of hundreds of derivatives Objectives of our research –To develop a pricing algorithm for the CDD derivatives that is orders of magnitude faster than the MC method, and easily parallelizable
11
11 3. A new pricing algorithm based on the fast Gauss transform The basic idea (Yamamoto & Egi, 2004) –Define the partial CDD C n as follows: –Compute the joint probability distribution function p n (T n, C n ) of (T n, C n ) by a recursion formula. –Compute the expected payoff from p N (T N, C N ). The joint pdf for the 1 st day C n = i=1 n max(0, T i – T )
12
12 Computing the joint pdf by a recursion formula Transition pdf from p n–1 (T n–1, C n–1 ) to p n (T n, C n ) The transition pdf for can be computed similarly. When, we have from C n = C n–1 + (T n – T ),
13
13 Computing the joint pdf by a recursion formula The recursion formula for p n (T n, C n ) Similarly, the recursion formula for can be expressed as a convolution of a function with the Gaussian distribution. Convolution of a function with the Gaussian distribution When, Computational work (assuming M grid points for both T n and C n directions) O(M 2 ) for each convolution O(M 3 ) for computing p n (T n, C n ) for all values of T n and C n
14
14 Computing the expected payoff The expected payoff can be computed from p N (T N, C N ) by simple integrations:
15
15 Computational work of the present method –O(M 3 ) work to compute M convolutions at each time step. The fast Gauss transform Greengard & Strain, 1991 –Expand the Gaussian in the convolution with Hermite functions. –Reduces the computational work from O(M 2 ) to O(M). –Proved useful to construct fast and accurate pricing algorithms for various financial derivatives (Broadie & Yamamoto, 2003). Effect of using the FGT –The computational work at each time step can be reduced from O(M 3 ) to O(M 2 ). Acceleration by the fast Gauss transform
16
16 Convergence of the proposed method Computational work –O(M 2 ) for each step (thanks to the use of the FGT) Accuracy –The pricing error can be shown to decrease as O(1/M 2 ). The error decreases as E = O(1/τ) with the computational timeτ. Comparison with the Monte Carlo method –For the MC method, E = O(1/τ). Asymptotically, our method converges faster than the MC method.
17
17 4. Parallelization The recursion formulas at each time step ) When T n < T, When T n T, The computation of p n (T n, C n ) for different values of C n can be done independently. Easily parallelizable by partitioning the array of p n (T n, C n ) in the C n direction and allocating each partial array to one processor.
18
18 TnTn CnCn O T Computation by the recursion formula Data transfer between the processors T n –1 C n–1 O T Data mapping at step n–1 PU0 PU1 PU2 PU0 PU1 PU2 T n –1 C n–1 O T Data transfer : Data to be transferred
19
19 5. Numerical results Target problem –CDD call derivatives under the Dischel model Numerical methods –Monte Carlo method –Our method Parameters –Period of observation: N days from July 7 th (N = 10 or 20) –Place of observation: Tokyo –Index: CDD (T = 24 C) –Strike value: K= 20 or 40 C – = – 0.56, = – 0.01, = 1.83, k = 20 Computing environments –Alpha workstation with g77 compiler
20
20 Numerical results (contd) Time (sec) Price N=10, K=20N=20, K=40 The MC method needs 100 to 1000 seconds to get an accuracy of 10 –2. Our method is more than 10 times faster than the MC method.
21
21 Effect of parallelization Platform –Cluster of Alpha workstations 8 Alpha 21164A processor 128MB memory / node 100-BaseT network Results –6 times speedup using 8 nodes. –Comparable with the MC method, which can achieve almost perfect speedup Number of nodes Speedup
22
22 6. Conclusion Conclusion –We developed a fast and an easily parallelizable algorithm for pricing CDD weather derivatives based on the fast Gauss transform. –Our algorithm is more than 10 times faster than the MC method when computing the price of a CDD derivative with 5 to 20 monitoring dates. –Also, it can achieve 6 times speedup on a WS cluster with 8 nodes. Future work –Application to other types of temperature derivatives –Application to the pricing of a portfolio consisting of a large number of derivatives
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.