16 lines
291 B
C#
16 lines
291 B
C#
namespace YLErp.Configuration
|
|
{
|
|
public enum VolModeEnum
|
|
{
|
|
/// <summary>
|
|
/// 依然用波动率曲面
|
|
/// </summary>
|
|
VolSurface,
|
|
|
|
/// <summary>
|
|
/// 开仓,目标波动率支持模式
|
|
/// </summary>
|
|
TradeVol
|
|
}
|
|
}
|