public IActionResult GetTrades(string strategyId)
        {
            var strategy = _strategyRepository.GetById(strategyId);

            if (strategy == null)
            {
                return(BadRequest("Strategy not found"));
            }
            if (strategy.TradingMode == TradingMode.Real)
            {
                _tradeService.MirrorRealTrades(strategy);
            }
            return(Ok(_tradeRepository.GetByStrategyId(strategyId)));
        }