|
|
@ -49,5 +49,19 @@ namespace Binance.TradeRobot.Business |
|
|
|
logManager.GetLogger(robot.ExecuteLogKey).Error(ex, stringBuilder.ToString()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void LongCross<T, T1>(T singalRequest, T1 robot, decimal newestPrice, bool isRemedy) |
|
|
|
where T : BaseSingalRequest |
|
|
|
where T1 : RobotResponse |
|
|
|
{ |
|
|
|
throw new NotImplementedException(); |
|
|
|
} |
|
|
|
|
|
|
|
public void ShortCross<T, T1>(T singalRequest, T1 robot, decimal newestPrice, bool isRemedy) |
|
|
|
where T : BaseSingalRequest |
|
|
|
where T1 : RobotResponse |
|
|
|
{ |
|
|
|
throw new NotImplementedException(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|