币安量化交易
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
625 B

using Binance.TradeRobot.Model.Base;
using Binance.TradeRobot.Model.Dto;
namespace Binance.TradeRobot.Business
{
public interface ITradeBusiness
{
Enums.TradePolicy TradePolicy { get; }
void TrendChanged<T, T1>(T singalRequest, T1 robot) where T : BaseSingalRequest where T1 : RobotResponse;
void LongCross<T, T1>(T singalRequest, T1 robot, decimal newestPrice,bool isRemedy) where T : BaseSingalRequest where T1 : RobotResponse;
void ShortCross<T, T1>(T singalRequest, T1 robot, decimal newestPrice, bool isRemedy) where T : BaseSingalRequest where T1 : RobotResponse;
}
}