20 using System.Collections.Generic;
32 private readonly HashSet<SecurityType> _supportSecurityTypes =
new(
46 private readonly HashSet<OrderType> _supportOrderTypes =
new(
65 throw new NotSupportedException($
"Eze brokerage can only be used with a {AccountType.Margin} account type");
92 if (!_supportSecurityTypes.Contains(security.
Type))
100 if (!_supportOrderTypes.Contains(order.
Type))
111 $
"Order Quantity must be Integer, but provided {order.AbsoluteQuantity}.");
116 return base.CanSubmitOrder(security, order, out message);