April 3rd, 2008, 6:07 am
Hi,I'm having trouble understanding (or getting to work) Haug's implementation of the Curran approximation of Asian ARO options. (pp197-199, Option Pricing Formulas, 2007).Specifically, what parameters should you pass when you have passed a fixing period (m > 0) ? Continuing Haug's table 4-27 example, suppose we have an ARO option sampled once a week for half a year - 27 sampling points - and we are one week into the sampling period, ie m = 1.Alternative: # t1 (time to first fixing) should be negative - eg -1/52 for one week ago# T should be positive - eg 25/52 for 25 weeks until expiry# m = 1, one fixing has been observed# n = 27, there are 27 fixings in totalThe above is the only way (that I have thought of) to get dt = (T - t1) / (n - 1) = 1/52 as required. Haug's spreadsheet suggests the above but t1 is time to next fixing, in which case dt reduces.However, then many other things break, the first of which being (in the first loop)# vi = v * Sqrt(t1 + (i - 1)*dt)since t1 < 0 so the Sqrt explodes.Alternatively, if we say # t1 (time to next fixing) = 1/52# T (time to expiry) = 25/52# m = 1# n = 26 fixings remainingthen an expression like SA > n/m * X does not make sense (since n must here be the total fixings, not remaining).The final alternative is to take abs(t1) whenever it appears with a volatility term, but I'm reluctant to make such an ad hoc change without properly understanding what is going on!All help appreciated!!
Last edited by
quosh on April 2nd, 2008, 10:00 pm, edited 1 time in total.