約定

ISDA:將指定為 x 個工作日之前的日期解釋為另一個工作日約定為“無”的日期

  • January 26, 2014

我有一個利率掉期,它有一個與百慕大行使時間表的中斷權。

對於每次行使,結算日期被指定為已經調整的工作日。每次行使的“最後通知日期”(即到期)指定為結算日期前 5 個工作日,使用工作日慣例“無”和給出的假日城市。

在這種情況下,確定調整後的通知日期的正確方法是什麼?請注意,如果這有什麼不同的話,這個契約是在 FpML 中指定的。

FpML 如下所示:

<bermudaExerciseDates>
 <relativeDates>
  <periodMultiplier>-5</periodMultiplier>
  <period>D</period>
  <dayType>Business</dayType>
  <businessDayConvention>NONE</businessDayConvention>
  <businessCenters>
    <businessCenter>GBLO</businessCenter>
    <businessCenter>USNY</businessCenter>
    <businessCenter>AUSY</businessCenter>
  </businessCenters>
  <dateRelativeTo href="cashSettlementPaymentDate" />
 </relativeDates>
</bermudaExerciseDates>

工作日慣例 NONE 表示當一天不是工作日時不進行調整,因此我假設調整後的通知日期為調整後的結算日期前五天,無論假期或週末如何。不過,不確定這在實踐中會如何發揮作用。

引用自:https://quant.stackexchange.com/questions/9797