币安量化交易
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.

12 lines
329 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;
}
}