The problem I think is that when I save the layout file for scroll view it doesn't appear in the files folder.
Hi Nyptop
I remember you my errors in "Option calculator2.zip"
I corrected the code with "Option calculator3.zip"
------
Errors in module Call are:
Wrong
d1 = (Logarithm(S / X, cE) + (r +
(Power(v, 2)/2) * T1
)) / (v * Sqrt(T1))
Correct
d1 = (Logarithm(S / X, cE) + (r + Power(v, 2)/2) * T1) / (v * Sqrt(T1))
Wrong
BlackScholes = S * CND1 - X * Power(cE, -r *
T) * CND2
Correct
BlackScholes = S * CND1 - X * Power(cE, -r *
T1) * CND2
------
Errors in module Put are:
Wrong
d1 = (Logarithm(S / X, cE) + (r +
(Power(v, 2)/2) * T1
)) / (v * Sqrt(T1))
Correct
d1 = (Logarithm(S / X, cE) + (r + Power(v, 2)/2) * T1) / (v * Sqrt(T1))
Wrong
BlackScholes = - S * CND1 + X * Power(cE, -r *
T) * CND2
Correct
BlackScholes = - S * CND1 + X * Power(cE, -r *
T1) * CND2
Marco