-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Approximate European option price under SABR model #8
Comments
Can I work on this issue? |
Hi Joy! Thanks for your interest! I've assigned the issue to you. Please follow Google Python and TensorFlow Probability Style Guides. Will update with the internal one once it is published. In case you are new to TensorFlow, we have create a training you might find useful As a guidance, please familiarize yourself with option_price and binary_price implementations so that it is easier for you to get started. Please reach out if you have any issues. |
Sure, will do. |
Hi Joy, Are you still working on this issue? If you aren't could you please let us know? -Ashish |
@saxena-ashish-g I'm not working on this issue. Whoever wants to take this please go ahead. |
@cyrilchim I didnt come across any folder named volatility under tf_quant_finance. Can you please point me to the file? |
@Rish001 It has been refactored. This has to go to models/sabr/approximations/european_option.py (similarly to heston structure) |
Yes, Rishav, that is the approximation. One could use it for calibration purposes as described in the paper |
What are the possible test cases that my implementation needs to be tested against? |
Hi Rishav,
You can find different estimated European option prices under the SABR
model here <http://ta.twi.tudelft.nl/mf/users/oosterle/oosterlee/SABRMC.pdf>.
Your approximation should lead to similar results.
Please let me know if you have any further questions. I am happy to help
you debug the code if you get stuck.
Best,
Cyril
…On Thu, Jul 30, 2020 at 2:19 PM RISHAV DUTTA ***@***.***> wrote:
What are the possible test cases that my implementation needs to be tested
against?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#8 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADMX3DXUGCQ4CPDDD2GENZTR6FXMZANCNFSM4IVSNTLA>
.
|
How are these integrations working? are these integrations nested in one inside the other? Also, in the same paper, data has been collected in the following manner:
summary statistics of data: and that of residuals errors of model calibration: my question is, for the purpose of calibration, are volatility values of two option tenors say 3M(10.81,10.22,...) and 6M(10.99,10.32...) are being considered? |
@Rish001 The approximation I think the best way to get started is to implement the approximation first. It seems that the original paper is self-contained in terms of notations. By the time this is implemented, we will have the SABR model in the module and you will be able to use Monte Carlo method to get option prices and get your implementation tested. Does this sound good? |
As the mentioned integral is unbounded, I think Monte Carlo integration is to be applied. Do you think there is any other way to compute the integral? |
@cyrilchim I have built a minimal viable code for determining option price for option tenor T1. But i am encountering overflow error which I am unable to remove. I would really appreciate it if you can provide me some helpful direction. |
@Rish001 Could you please give me access to the colab? As for the integration boundaries, make them function arguments and give them some sensible values for the tests. We will figure out appropriate default values later (e.g., based on the analytical approximations to implied vol) |
@cyrilchim I have given the access. Please check it out |
@Rish001 You need to write unit tests for the functions. There is clearly a bug somewhere as it seems your values overflow. At this point this is not a TF problem but this is an issue with the numpy code you have written. Try rerunning monte carlo with fewer iterations and maybe use pdb tool to debug the code (see colab usage here) |
Just to leave you an update. I have mostly finished debugging and will be submitting shortly |
@cyrilchim could you give me a set of test cases to test my implementation against? I need a number of combinations of alpha, beta,rho, nu,forwards,strikes and time to maturity and corresponding implied volatility values so that I can test my SABR implied vol calculation |
Hi Rishav, We do not have explicit tests but you should be able to use current SABR model to sample trajectories and estimate European option price (put or call). Your approximation should give similar results. For parameters use similar values to what we have in tests |
SABR model has accurate density approximations (see, e.g., here). It is of interest to use the approximations to estimate European option prices.
The module implementing this method should live under tf_quant_finance/volatility/sabr_approximation.py. It should support both European puts and calls approximations. Tests should be in sabr_approximation_test.py in the same folder.
The text was updated successfully, but these errors were encountered: