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

21 lines
386 B
C#

namespace YLErp.Abstract
{
/// <summary>
/// 构造一个波动率曲面方法参数
/// </summary>
public interface ITradeVolLinearParam
{
double GetTradeOpenVol();
double GetTradeCloseVol();
DateTime GetStartDate();
DateTime GetMaturityDate();
int GetNumOfSmoothingDays();
bool IsIncludeStartDate();
}
}