def bachelier_delta_to_strike(fwd, delta, vol, texp): return fwd - norm.ppf(delta) * vol * math.sqrt(texp)