public async Task CreateAsync([FromBody] HedgeLimitOrderCreateModel model, string userId)
 {
     try
     {
         await _hedgeService.CreateLimitOrderAsync(model.AssetId, model.Exchange, (LimitOrderType)model.Type,
                                                   model.Price, model.Volume, userId);
     }
     catch (InvalidOperationException exception)
     {
         throw new ValidationApiException(HttpStatusCode.BadRequest, exception.Message);
     }
 }