Использую код:
Код
trader.RegisterSecurity(option);
var bs = new BlackScholes(option, trader, trader);
DateTimeOffset currentTime = DateTimeOffset.Now;
decimal delta = bs.Delta(currentTime);
decimal gamma = bs.Gamma(currentTime);
decimal vega = bs.Vega(currentTime);
decimal theta = bs.Theta(currentTime);
decimal rho = bs.Rho(currentTime);
decimal iv = bs.ImpliedVolatility(currentTime, premium);
Греки не передаются, хотя в QUIK IV транслируется, что я делаю не так?
Спасибо.