-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassetTypes.py
41 lines (41 loc) · 1.45 KB
/
assetTypes.py
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
asset_types = {
"4k": "401K and Other Non-Federal Retirement Accounts",
"5c": "529 College Savings Plan",
"5p": "529 Prepaid Tuition Plan",
"ab": "Asset-Backed Securities",
"ba": "Bank Accounts, Money Market Accounts and CDs",
"co": "Collectibles",
"cs": "Corporate Securities (Bonds and Notes)",
"db": "Defined Benefit Pension",
"do": "Debts Owed to the Filer",
"ds": "Delaware Statutory Trust",
"ef": "Exchange Traded Funds (ETF)",
"eq": "Excepted/Qualified Blind Trust",
"et": "Exchange Traded Notes",
"fa": "Farms",
"fe": "Foreign Exchange Position (Currency)",
"fn": "Fixed Annuity",
"fu": "Futures",
"gs": "Government Securities and Agency Debt",
"he": "Hedge Funds & Private Equity Funds (EIF)",
"hn": "Hedge Funds & Private Equity Funds (non-EIF)",
"ic": "Investment Club",
"ih": "IRA (Held in Cash)",
"ip": "Intellectual Property & Royalties",
"ir": "IRA",
"mf": "Mutual Funds",
"oi": "Ownership Interest (Holding Investments)",
"ol": "Ownership Interest (Engaged in a Trade or Business)",
"op": "Options",
"ot": "Other",
"pe": "Pensions",
"ps": "Stock (Not Publicly Traded)",
"re": "Real Estate Invest. Trust (REIT)",
"rp": "Real Property",
"sa": "Stock Appreciation Right",
"st": "Stocks (including ADRs)",
"tr": "Trust",
"va": "Variable Annuity",
"vi": "Variable Insurance",
"wu": "Whole/Universal Insurance",
}