refactor(bot): update paper trading models, broker integration, background services, and test project

This commit is contained in:
2026-08-24 21:37:10 +02:00
parent 5c95dd182c
commit 7060f0f7b1
32 changed files with 1904 additions and 1477 deletions
@@ -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);
}