当前位置: 首页>>代码示例>>C#>>正文


C# Leg.CurrentNominal方法代码示例

本文整理汇总了C#中Leg.CurrentNominal方法的典型用法代码示例。如果您正苦于以下问题:C# Leg.CurrentNominal方法的具体用法?C# Leg.CurrentNominal怎么用?C# Leg.CurrentNominal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Leg的用法示例。


在下文中一共展示了Leg.CurrentNominal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CompareLegs

 bool CompareLegs(Leg leg1, Leg leg2, MurexProduct murex, bool isFloatFloat,
     bool fullMatch, bool sameRef, ref string unmatchReason, DateTime dt)
 {
     var date = new SimpleDate(dt);
     var time = dt; 
     if (leg1.NotionalCurrency != murex.Currency1)
     {
         if (!sameRef) return false;
         else unmatchReason += "Currency1 ";
     }
     if (leg2.NotionalCurrency != murex.Currency2)
     {
         if (!sameRef) return false;
         else unmatchReason += "Currency2 ";
     }
     if (leg1.StartDate != murex.EffectiveDate &&
         leg1.FirstCalculationPeriodStart != murex.EffectiveDate)
     {
         if (!sameRef) return false;
         else unmatchReason += "SwapStartDate ";
     }
     if (leg1.EndDate != murex.EndDate)
     {
         if (!sameRef) return false;
         else unmatchReason += "SwapEndDate ";
     }
     if (Math.Abs(leg1.CurrentNominal(date, time, false) - murex.Nominal1) > _qtyTolerance)
     {
         if (fullMatch) return false;
         else unmatchReason += "Nominal1 ";
     }
     if (Math.Abs(leg2.CurrentNominal(date, time, false) - murex.Nominal2) > _qtyTolerance)
     {
         if (fullMatch) return false;
         else unmatchReason += "Nominal2 ";
     }
     if (!isFloatFloat && Math.Abs(leg1.FixedRate - murex.FixedRate) > _rateTolerance)
     {
         if (fullMatch) return false;
         else unmatchReason += "FixedRate ";
     }
     if (Math.Abs(leg2.Spread - murex.Spread2) > _rateTolerance)
     {
         if (fullMatch) return false;
         else unmatchReason += "Spread2 ";
     }
     if (leg2.FirstFixing != 0 && Math.Abs(leg2.FirstFixing - murex.FirstFixingRate2) > _rateTolerance)
     {
         if (fullMatch) return false;
         else unmatchReason += "FirstFixing2 ";
     }
     if (isFloatFloat)
     {
         if (Math.Abs(leg1.Spread - murex.Spread1) > _rateTolerance)
         {
             if (fullMatch) return false;
             else unmatchReason += "Spread1 ";
         }
         if (leg1.FirstFixing != 0 && Math.Abs(leg1.FirstFixing - murex.FirstFixingRate1) > _rateTolerance)
         {
             if (fullMatch) return false;
             else unmatchReason += "FirstFixing1 ";
         }
     }
     return true;
 }
开发者ID:heimanhon,项目名称:researchwork,代码行数:66,代码来源:MurexPosTradeRecon.cs


注:本文中的Leg.CurrentNominal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。