Skip to content

Commit 07003af

Browse files
Minor Update IB Order Properties (#8619)
- FA EqualQuantity was renamed to Equal, update docs - Add remarks warning on exclusiveness of FaProfile, FaGroup and Account
1 parent 5f8d76f commit 07003af

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Common/Orders/InteractiveBrokersOrderProperties.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,18 @@ public class InteractiveBrokersOrderProperties : OrderProperties
2525
/// <summary>
2626
/// The linked account for which to submit the order (only used by Financial Advisors)
2727
/// </summary>
28+
/// <remarks>Mutually exclusive with FaProfile and FaGroup</remarks>
2829
public string Account { get; set; }
2930

3031
/// <summary>
3132
/// The account group for the order (only used by Financial Advisors)
3233
/// </summary>
34+
/// <remarks>Mutually exclusive with FaProfile and Account</remarks>
3335
public string FaGroup { get; set; }
3436

3537
/// <summary>
3638
/// The allocation method for the account group order (only used by Financial Advisors)
37-
/// Supported allocation methods are: EqualQuantity, NetLiq, AvailableEquity, PctChange
39+
/// Supported allocation methods are: Equal, NetLiq, AvailableEquity, PctChange
3840
/// </summary>
3941
public string FaMethod { get; set; }
4042

@@ -46,6 +48,7 @@ public class InteractiveBrokersOrderProperties : OrderProperties
4648
/// <summary>
4749
/// The allocation profile to be used for the order (only used by Financial Advisors)
4850
/// </summary>
51+
/// <remarks>Mutually exclusive with FaGroup and Account</remarks>
4952
public string FaProfile { get; set; }
5053

5154
/// <summary>

0 commit comments

Comments
 (0)