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
//! Example FA allocation XML request data
///Replace all with your own accountIds
//==================================================================================================
pub const FA_ONE_GROUP: &str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<ListOfGroups> \
<Group> \
<name>Equal_Quantity</name> \
<ListOfAccts varName=\"list\"> \
<String>DU119915</String> \
<String>DU119916</String> \
</ListOfAccts> \
<defaultMethod>EqualQuantity</defaultMethod> \
</Group> \
</ListOfGroups>";
//==================================================================================================
pub const FA_TWO_GROUPS: &str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<ListOfGroups> \
<Group> \
<name>Equal_Quantity</name> \
<ListOfAccts varName=\"list\"> \
<String>DU119915</String> \
<String>DU119916</String> \
</ListOfAccts> \
<defaultMethod>EqualQuantity</defaultMethod> \
</Group> \
<Group> \
<name>Pct_Change</name> \
<ListOfAccts varName=\"list\">
<String>DU119915</String> \
<String>DU119916</String> \
</ListOfAccts> \
<defaultMethod>PctChange</defaultMethod> \
</Group> \
</ListOfGroups>";
//==================================================================================================
pub const FA_ONE_PROFILE: &str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<ListOfAllocationProfiles> \
<AllocationProfile> \
<name>Percent_60_40</name> \
<type>1</type> \
<ListOfAllocations varName=\"listOfAllocations\"> \
<Allocation>
<acct>DU119915</acct> \
<amount>60.0</amount> \
</Allocation> \
<Allocation> \
<acct>DU119916</acct> \
<amount>40.0</amount> \
</Allocation> \
</ListOfAllocations> \
</AllocationProfile> \
</ListOfAllocationProfiles>";
//==================================================================================================
pub const FA_TWO_PROFILES: &str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> \
<ListOfAllocationProfiles> \
<AllocationProfile> \
<name>Percent_60_40</name> \
<type>1</type> \
<ListOfAllocations varName=\"listOfAllocations\"> \
<Allocation> \
<acct>DU119915</acct> \
<amount>60.0</amount> \
</Allocation> \
<Allocation> \
<acct>DU119916</acct> \
<amount>40.0</amount> \
</Allocation> \
</ListOfAllocations> \
</AllocationProfile> \
<AllocationProfile> \
<name>Ratios_2_1</name> \
<type>1</type> \
<ListOfAllocations varName=\"listOfAllocations\"> \
<Allocation> \
<acct>DU119915</acct> \
<amount>2.0</amount> \
</Allocation> \
<Allocation>
<acct>DU119916</acct> \
<amount>1.0</amount> \
</Allocation> \
</ListOfAllocations> \
</AllocationProfile> \
</ListOfAllocationProfiles>";