public async Task StopAsync(string name, string userId)
        {
            try
            {
                await _exchangeSettingsService.StopAsync(name, userId);

                await _orderBookService.RemoveByExchangeAsync(name);
            }
            catch (EntityNotFoundException)
            {
                throw new ValidationApiException(HttpStatusCode.NotFound, "Exchange not found");
            }
        }