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.
13 lines
329 B
13 lines
329 B
3 years ago
|
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;
|
||
|
}
|
||
|
}
|