Taking the given Spot as the mean, and simply using Normal Distribution,
one can easily compute -1SD and +1SD as follows:
For the 0.341 (ie. 34.1%), see this in the above link.
Actually using one more decimal is better --> 0.3413 (34.13%).
One gets this number by computing 0.5 - z_to_p(-1).
Question: Is it possible to derive an IV (ie. a stddev) from the above relation?
Question: Can the above be turned into a Lognormal Distribution?
one can easily compute -1SD and +1SD as follows:
Code:
Spot_at_minus_1SD = Spot * (1 - 0.341)
Spot_at_plus_1SD = Spot * (1 + 0.341)
For the 0.341 (ie. 34.1%), see this in the above link.
Actually using one more decimal is better --> 0.3413 (34.13%).
One gets this number by computing 0.5 - z_to_p(-1).
Question: Is it possible to derive an IV (ie. a stddev) from the above relation?

Question: Can the above be turned into a Lognormal Distribution?
Last edited: