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
|
investments {
investment {
currency: "GLD"
asset_account: "Assets:US:ETrade:GLD"
dividend_accounts: "Income:US:ETrade:GLD:Dividend"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "ITOT"
asset_account: "Assets:US:ETrade:ITOT"
dividend_accounts: "Income:US:ETrade:ITOT:Dividend"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "VEA"
asset_account: "Assets:US:ETrade:VEA"
dividend_accounts: "Income:US:ETrade:VEA:Dividend"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "VHT"
asset_account: "Assets:US:ETrade:VHT"
dividend_accounts: "Income:US:ETrade:VHT:Dividend"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "CORP"
asset_account: "Assets:US:ETrade:CORP"
dividend_accounts: "Income:US:ETrade:CORP:Dividend"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "CORPEUR"
asset_account: "Assets:US:ETrade:CORPEUR"
cash_accounts: "Assets:US:ETrade:CashEUR"
}
investment {
currency: "CORPSPL"
asset_account: "Assets:US:ETrade:CORPSPL"
cash_accounts: "Assets:US:ETrade:Cash"
}
investment {
currency: "RGAGX"
asset_account: "Assets:US:Vanguard:RGAGX"
cash_accounts: "Assets:US:Vanguard:Cash"
}
investment {
currency: "VBMPX"
asset_account: "Assets:US:Vanguard:VBMPX"
cash_accounts: "Assets:US:Vanguard:Cash"
}
}
groups {
group {
name: "Gold"
investment: "Assets:US:ETrade:GLD"
}
group {
name: "iShares Core S&P Total U.S. Stock Market ETF"
investment: "Assets:US:ETrade:ITOT"
}
group {
name: "American Funds Growth Fund of America"
investment: "Assets:US:Vanguard:RGAGX"
}
group {
name: "Vanguard Total Bond Market Index Fund Institutional Plus Shares"
investment: "Assets:US:Vanguard:VBMPX"
}
group {
name: "Vanguard FTSE Developed Markets ETF"
investment: "Assets:US:ETrade:VEA"
}
group {
name: "Vanguard Health Care ETF"
investment: "Assets:US:ETrade:VHT"
}
group {
name: "CORP"
investment: "Assets:US:ETrade:CORP"
}
group {
name: "CORP (converted to EUR)"
investment: "Assets:US:ETrade:CORP"
currency: "EUR"
}
group {
name: "CORPEUR"
investment: "Assets:US:ETrade:CORPEUR"
}
group {
name: "CORPSPL"
investment: "Assets:US:ETrade:CORPSPL"
}
group {
name: "CORP (all)"
investment: "Assets:US:ETrade:CORP"
investment: "Assets:US:ETrade:CORPEUR"
currency: "USD"
}
group {
name: "All investments"
investment: "Assets:*"
currency: "USD"
}
}
|