We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.r*self.T)
fprime is not correct, it should be
return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.q*self.T)
The text was updated successfully, but these errors were encountered:
hey @xuewei4d could you provide a source for this formula? From a quick search online looks like the current implementation is correct source
Sorry, something went wrong.
imo, to compute iv using newton method, fprime is just vega. So according to the wikipedia, it should have exp(-q * t)
Which one is right?
No branches or pull requests
return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.r*self.T)
fprime is not correct, it should be
return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.q*self.T)
The text was updated successfully, but these errors were encountered: