using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YLErp.Modules.TradeModule.KnockOutModule.Dto;
namespace YLErp.Modules.CalculationModule.Abstract
{
///
/// 交易敲出 收益计算 服务
///
public interface ITradeKnockOutPayoffCalcService
{
///
/// 获取交易敲出收益
///
///
/// 实时标的价格
///
GetKnockOutPayoffResult GetKnockOutPayoff(trade td, double underlyingPrice);
}
}