Order Placement

View as MarkdownOpen in Claude

For advisors to place orders to their allocation groups users would simply declare their allocation group name in the order object. This would be done with the Order’s faGroup field. The example to the right references a standard market order placed to our allocation group, MyTestProfile.

1order = Order()
2order.action = "BUY"
3order.orderType = "MKT"
4order.totalQuantity = 50
5order.faGroup = "MyTestProfile"