Longstaff-Schwartz Method for Pricing American Options #295
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull request contributes to this issue regarding pricers for American options.
The Longstaff-Schwartz method is a Monte Carlo technique that uses least squares regression on in-the-money paths at each backwards time step to estimate the continuation value (the option’s value if it is not exercised).
In this implementation, I chose Legendre polynomials up to order 4 (i.e., orders 0 to 4) as the basis functions for the regression step. However, other basis functions, such as Hermite or Chebyshev, can also be used.
The unit tests were designed to pass within a tolerance threshold due to the variance in this method’s outcomes.
Note that at some point, as with the finite difference pricers, we will likely eventually implement these pricers on types/objects (as opposed to keeping
struct
pricers).The Longstaff-Schwartz algorithm
I have outlined the algorithm in this PDF.