42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
namespace YLErp.Model
|
|
{
|
|
public class underlying_managershow
|
|
{
|
|
public underlying_manager underlying_manager { get; set; }
|
|
|
|
public List<underlying_parameter> rules { get; set; }
|
|
|
|
public volatility vols { get; set; }
|
|
|
|
public SyntheticPriceModel synthetic { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 包含行权价,买卖涨跌
|
|
/// </summary>
|
|
public class QuotationResult
|
|
{
|
|
public double CallAsk { get; set; }
|
|
public double CallBid { get; set; }
|
|
/// <summary>
|
|
/// 行权价
|
|
/// </summary>
|
|
public double Strike { get; set; }
|
|
public double PutAsk { get; set; }
|
|
public double PutBid { get; set; }
|
|
}
|
|
|
|
public class VolTypeState
|
|
{
|
|
/// <summary>
|
|
/// 波动率模式名
|
|
/// </summary>
|
|
public string VolModelName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 波动率模式是否不勾选
|
|
/// </summary>
|
|
public bool VolDisabled { get; set; }
|
|
}
|
|
}
|