-
Notifications
You must be signed in to change notification settings - Fork 0
/
fa_allocation_sample.go
276 lines (268 loc) · 7.12 KB
/
fa_allocation_sample.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package ibapi
import (
"encoding/xml"
)
// ListOf Groups .
type ListOfGroups struct {
XMLName xml.Name `xml:"ListOfGroups"`
Groups []Group
}
// Group .
// DefaultMethod is either one of the IB-computed allocation methods (AvailableEquity, Equal, NetLiq)
// or a user-specified allocation methods (MonetaryAmount, Percent, Ratio, ContractsOrShares).
// AvailableEquity method requires you to specify an order size. This method distributes shares based on the amount of available equity in each account.
// The system calculates ratios based on the Available Equity in each account and allocates shares based on these ratios.
// Equal method requires you to specify an order size. This method distributes shares equally between all accounts in the group.
// NetLiq method requires you to specify an order size. This method distributes shares based on the net liquidation value of each account.
// The system calculates ratios based on the Net Liquidation value in each account and allocates shares based on these ratios.
// MonetaryAmount method calculates the number of units to be allocated based on the monetary value assigned to each account.
// Ratio method calculates the allocation of shares based on the ratios you enter.
// ContractsOrShares method allocates the absolute number of shares you enter to each account listed.
// If you use this method, the order size is calculated by adding together the number of shares allocated to each account in the profile.
type Group struct {
XMLName xml.Name `xml:"Group"`
Name string `xml:"name"`
DefaultMethod string `xml:"defaultMethod"`
ListOfAccounts ListOfAccounts
}
// ListOfAccounts .
type ListOfAccounts struct {
XMLName xml.Name `xml:"ListOfAccts"`
VarName string `xml:"varName,attr"`
Accounts []Account
}
// Account .
type Account struct {
XMLName xml.Name `xml:"Account"`
ID string `xml:"acct"`
Amount string `xml:"amount,omitempty"`
}
// FAUpdatedGroup returns a list of groups xml sample
func FAUpdatedGroup() string {
log := ListOfGroups{
Groups: []Group{
{
Name: "MyTestProfile1",
DefaultMethod: "ContractsOrShares",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167", Amount: "100.0"},
{ID: "DU6202168", Amount: "200.0"},
},
},
},
{
Name: "MyTestProfile2",
DefaultMethod: "Ratio",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167", Amount: "1.0"},
{ID: "DU6202168", Amount: "2.0"},
},
},
},
{
Name: "MyTestProfile3",
DefaultMethod: "Percent",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167", Amount: "60.0"},
{ID: "DU6202168", Amount: "40.0"},
},
},
},
{
Name: "MyTestProfile4",
DefaultMethod: "MonetaryAmount",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167", Amount: "1000.0"},
{ID: "DU6202168", Amount: "2000.0"},
},
},
},
{
Name: "Group_1",
DefaultMethod: "NetLiq",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167"},
{ID: "DU6202168"},
},
},
},
{
Name: "MyTestGroup1",
DefaultMethod: "AvailableEquity",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167"},
{ID: "DU6202168"},
},
},
},
{
Name: "MyTestGroup2",
DefaultMethod: "NetLiq",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167"},
{ID: "DU6202168"},
},
},
},
{
Name: "MyTestGroup3",
DefaultMethod: "Equal",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167"},
{ID: "DU6202168"},
},
},
},
{
Name: "Group_2",
DefaultMethod: "AvailableEquity",
ListOfAccounts: ListOfAccounts{
VarName: "list",
Accounts: []Account{
{ID: "DU6202167"},
{ID: "DU6202168"},
},
},
},
},
}
groupXml, _ := xml.MarshalIndent(log, " ", " ")
return xml.Header + string(groupXml)
}
/*
<?xml version="1.0" encoding="UTF-8"?>
<ListOfGroups>
<Group>
<name>MyTestProfile1</name>
<defaultMethod>ContractsOrShares</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
<amount>100.0</amount>
</Account>
<Account>
<acct>DU6202168</acct>
<amount>200.0</amount>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestProfile2</name>
<defaultMethod>Ratio</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
<amount>1.0</amount>
</Account>
<Account>
<acct>DU6202168</acct>
<amount>2.0</amount>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestProfile3</name>
<defaultMethod>Percent</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
<amount>60.0</amount>
</Account>
<Account>
<acct>DU6202168</acct>
<amount>40.0</amount>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestProfile4</name>
<defaultMethod>MonetaryAmount</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
<amount>1000.0</amount>
</Account>
<Account>
<acct>DU6202168</acct>
<amount>2000.0</amount>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>Group_1</name>
<defaultMethod>NetLiq</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
</Account>
<Account>
<acct>DU6202168</acct>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestGroup1</name>
<defaultMethod>AvailableEquity</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
</Account>
<Account>
<acct>DU6202168</acct>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestGroup2</nameout>
<defaultMethod>NetLiq</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
</Account>
<Account>
<acct>DU6202168</acct>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>MyTestGroup3</name>
<defaultMethod>Equal</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
</Account>
<Account>
<acct>DU6202168</acct>
</Account>
</ListOfAccts>
</Group>
<Group>
<name>Group_2</name>
<defaultMethod>AvailableEquity</defaultMethod>
<ListOfAccts varName="list">
<Account>
<acct>DU6202167</acct>
</Account>
<Account>
<acct>DU6202168</acct>
</Account>
</ListOfAccts>
</Group>
</ListOfGroups>
*/