Serving the Quantitative Finance Community

  • 1
  • 5
  • 6
  • 7
  • 8
  • 9
 
User avatar
jaesmine
Posts: 4
Joined: April 7th, 2004, 6:46 am

Re: iv for all and all for iv

October 23rd, 2023, 11:41 pm

I hope that my recent paper is helpful for the discussion: Choi et al. (2023),  https://arxiv.org/abs/2302.08758 .

The paper finds quite many new IV bounds (both upper and lower) for a given price (this is main theme of the paper).
Then, it also formulates a new Newton-Raphon method on the log price to handle very small option premiums properly. The iteration formula is quite simple (see Eq. (30) in the paper), and it always converges as long as the initial guess is a lower bound. (The proof is a bit tedious. Just see the left side of Figure 1. The log price is a concave function of sigma.) 
So we use a lower bound found in the earlier part of the paper (specifically L3 in Eq (23)). 

I actually tested the famous example in this thread (S0=1, K=1.5, sigma=4%) and reported it in the paper (See Section 3.3 Numerical Example(. The new NR method reaches an IV value within 2e-11 just after three iterations. 
This looks like NR with some upfront work to find an initial seed (which is always the main challenge/bottleneck).  
Mention is made of iterating a number of times to get a desired accuracy which may affect performance.
The upfront work to find a seed is very light in my algorithm. It just takes one evaluation of inverse normal CDF, so it's lighter than or equivalent to one NR iteration. (Among many lower/upper bounds, some take more computation. I picked one (L3) with the lightest calculation, although it is not the tightest one.)