refactor(bot): update paper trading models, broker integration, background services, and test project
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using FinlyticCore.Dtos.Bot;
|
||||
using FinlyticCore.Dtos.Trading;
|
||||
|
||||
namespace FinlyticBot.Services.Execution;
|
||||
|
||||
public interface IBotOrderExecutor
|
||||
{
|
||||
Task<BotTradeOrderDto?> ExecuteProposalAsync(
|
||||
TradeProposalDto proposal,
|
||||
BotExecutionVenue? preferredVenue = null,
|
||||
decimal? customQuantity = null,
|
||||
CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user