|
IntroductionI am delighted to announce that the Kupala-Nich platform now supports FX Forward valuation. OTC valuation within the Kupala-Nich platform is primarily built on top of QuantLib. However, while integrating FX Forward support, I was surprised to discover that QuantLib does not natively support FX Forward products. Consequently, introducing FX Forward valuation into Kupala-Nich required additional considerations, particularly around designing modeling APIs for accurately defining FX Forward positions. If anyone has insights into why QuantLib lacks direct support for FX Forwards, I would greatly appreciate being pointed toward any relevant discussions or documentation. | |
Defining FX Forward Products in Kupala-NichClear and precise definitions of FX Forward terms are fundamental to accurate valuation. Kupala Nich uses the following six fields to define FX Forward:
Implementation of FX Forward ValuationFX Forward valuation involves decomposing the forward contract into two separate cashflows based on the forward exchange rate. Each cashflow is then discounted to the spot date using appropriate discount curves for each currency. Subsequently, these discounted cashflows are converted into the traded currency using the spot rate and discounted again to the valuation date. Kupala-Nich calculates additional analytical measures alongside the NPV, including:
Below code snippet demonstrates FX Forward valuation using QuantLib. joint_calendar = ql.JointCalendar(curve1.calendar, curve2.calendar, ql.JoinHolidays) spot_date = joint_calendar.advance(valuation_date, ql.Period(spot_days, ql.Days)) df1 = curve1.discount_factor( matrity_date, spot_date) df2 = curve2.discount_factor( matrity_date, spot_date) df1_spot = curve2.discount_factor( spot_date) fx_delta1 = df1 * notional1 fx_delta2 = df2 * notional2 fx_delta2_in_curr1 = convert_to_ccy(fx_delta2, curr2, curr1) npv_local = df1_spot * ( fx_delta1 + fx_delta2_in_curr1 ) Handling Joint CalendarsProper date management, considering the calendar differences and holidays of both currencies involved, is important. Kupala-Nich employs QuantLib's ql.JointCalendar(curve1.calendar, curve2.calendar, ql.JoinHolidays) method, creating a combined calendar to accurately determine spot or maturity dates, critical for precise FX valuation. Curves: OIS vs FX Curves
|
No comments:
Post a Comment