Files
zszq-trs/Framework/YLErp.Core/Models/VolatilityImpl.cs
T
2024-05-09 14:06:26 +08:00

26 lines
560 B
C#

using YLErp.Abstract;
namespace YLErp.Models
{
/// <summary>
///
/// </summary>
public class VolatilityImpl : IVolatility
{
/// <summary>
/// 默认:MoneynessVol
/// </summary>
public string VolSurfaceMode { get; set; } = "MoneynessVol";
/// <summary>
/// 默认:BiLinear
/// </summary>
public string InterpolationMethod { get; set; } = "BiLinear";
/// <summary>
///
/// </summary>
public List<SingleVol> VolTable { get; set; }
}
}