using YLErp.Abstract; namespace YLErp.Models { /// /// 场外期权交易波动率(持仓波动率模式) /// public class OtcTradeVolatility : IOtcTradeVolatility { /// /// 开仓波动率 /// public double OpenVol { get; set; } /// /// 平仓波动率 /// public double CloseVol { get; set; } /// /// 平滑过渡天数 /// public int SmoothingDays { get; set; } /// /// 是否初值 /// public bool IsFirst { get; set; } /// /// 取值日期 /// public DateTime ValueDate { get; set; } } }