I am trying to sell in a financial advisor group. The Java example provided by IB looks like this:
Contract m_contract = new Contract();
Order m_order = new Order();
.
.
// allocate the order for this group
m_order.m_faGroup = "USGroup";
// using the percent change method
m_order.m_faMethod = "PctChange";
m_order.m_faPercentage = "100";
m_client.placeOrder(orderId++, m_contract, m_order);
However, when I try a similar bit of code, setting the FA attributes on the Order, the consul says:
You must specify an allocation (either a single account, group, or profile).
Any ideas?
I am trying to sell in a financial advisor group. The Java example provided by IB looks like this:
However, when I try a similar bit of code, setting the FA attributes on the
Order, the consul says:Any ideas?