1. 51.
    +1
    @46 n silersen nasil çalişacak amk? normdist.h kullaniyorsun default olarak. buradan anla$ilan o.

    include <cmath>
    2. include "normdist.h"

    double option_price_call_black_scholes( double S, // spot price
    double X, // Strike (exercise) price,
    double r, // interest rate
    double sigma,
    double time)
    {
    double time_sqrt = sqrt(time);
    double d1 = (log(S/X)+r*time)/(sigma*time_sqrt) + 0.5*sigma*time_sqrt;
    double d2 = d1-(sigma*time_sqrt);
    double c = S * N(d1) - X * exp(-r*time) * N(d2);
    return c;
    };

    derle bakayim ne hatasi alacaksin?
    ···
   tümünü göster