def prtfCalc(self): calc = {} calc["FairValue"], calc["Delta"], calc["Gamma"], calc["Vega"], calc[ "Rho"], calc["Theta"] = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 calc["Vanna"], calc["Volga"], calc["Veta"], calc[ "Charm"] = 0.0, 0.0, 0.0, 0.0 for tr in self.tradeRecord: if tr: opt = EuropeanOption(tr["CallOrPut"] == "Call", tr["Strike"], tr["DayToExpiry"], tr["DvdYield"] / 100.0) opt.setLevel(self.spot, tr["ImplVol"] / 100.0, tr["RiskFree"] / 100.0) calc["FairValue"] += opt.fairValue() * tr["Notional"] calc["Delta"] += opt.delta() * tr["Notional"] calc["Gamma"] += opt.gamma() * tr["Notional"] calc["Vega"] += opt.vega() * tr["Notional"] calc["Rho"] += opt.rho() * tr["Notional"] calc["Theta"] += opt.theta( ) * tr["Notional"] / self.DaysPerYear calc["Vanna"] += opt.vanna() * tr["Notional"] calc["Volga"] += opt.volga() * tr["Notional"] calc["Veta"] += opt.veta() * tr["Notional"] calc["Charm"] += opt.charm() * tr["Notional"] return calc
def perTradeCalc(self): tradeCalc = [{} for i in range(self.NTradeInput)] for i, tr in enumerate(self.tradeRecord): if tr: opt = EuropeanOption(tr["CallOrPut"] == "Call", tr["Strike"], tr["DayToExpiry"], tr["DvdYield"] / 100.0) opt.setLevel(self.spot, tr["ImplVol"] / 100.0, tr["RiskFree"] / 100.0) tradeCalc[i]["FairValue"] = opt.fairValue() tradeCalc[i]["Delta"] = opt.delta() tradeCalc[i]["Gamma"] = opt.gamma() tradeCalc[i]["Vega"] = opt.vega() tradeCalc[i]["Rho"] = opt.rho() tradeCalc[i]["Theta"] = opt.theta() / self.DaysPerYear return tradeCalc
def perScenCalc(self, scen): calc = {} calc["FairValue"], calc["Delta"], calc["Gamma"], calc["Vega"], calc[ "Rho"], calc["Theta"] = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 for tr in self.tradeRecord: if tr: vol = scen[f"k={tr['Strike']:.2f}"] / 100.0 opt = EuropeanOption( tr["CallOrPut"] == "Call", tr["Strike"], tr["DayToExpiry"] - abs(scen["DayToExpiry"]), tr["DvdYield"] / 100.0) opt.setLevel(self.spot + scen["Spot"], vol, (tr["RiskFree"] + scen["RiskFree"]) / 100.0) calc["FairValue"] += opt.fairValue() * tr["Notional"] calc["Delta"] += opt.delta() * tr["Notional"] calc["Gamma"] += opt.gamma() * tr["Notional"] calc["Vega"] += opt.vega() * tr["Notional"] calc["Rho"] += opt.rho() * tr["Notional"] calc["Theta"] += opt.theta( ) * tr["Notional"] / self.DaysPerYear return calc
def greekProfile(self, sArr, greekName): greekArr = [0.0] * len(sArr) for tr in self.tradeRecord: if tr: opt = EuropeanOption(tr["CallOrPut"] == "Call", tr["Strike"], tr["DayToExpiry"], tr["DvdYield"] / 100.0) for i, s in enumerate(sArr): opt.setLevel(s, tr["ImplVol"] / 100.0, tr["RiskFree"] / 100.0) if greekName.lower() == "delta": greekArr[i] += opt.delta() * tr["Notional"] elif greekName.lower() == "gamma": greekArr[i] += opt.gamma() * tr["Notional"] elif greekName.lower() == "vega": greekArr[i] += opt.vega() * tr["Notional"] elif greekName.lower() == "rho": greekArr[i] += opt.rho() * tr["Notional"] elif greekName.lower() == "theta": greekArr[i] += opt.theta( ) * tr["Notional"] / self.DaysPerYear return greekArr