-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock.json
52 lines (46 loc) · 994 Bytes
/
stock.json
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
{
"initial_amount": 0,
"monthly_amount": 120,
"start_month": 2,
"start_year": 2013,
"end_month": 2,
"end_year": 2023,
"tax_percentage": 28.0,
"stocks":[
{
"name": "pepsi",
"symbol": "pep",
"percentage": 17
},
{
"name": "coca-cola",
"symbol": "ko",
"percentage": 10
},
{
"name": "McDonald's",
"symbol": "mcd",
"percentage": 18
},
{
"name": "Johnson & Johnson",
"symbol": "jnj",
"percentage": 15
},
{
"name": "Alphabet/Google",
"symbol": "goog",
"percentage": 8
},
{
"name": "Microsoft",
"symbol": "msft",
"percentage": 12
},
{
"name": "Apple",
"symbol": "aapl",
"percentage": 20
}
]
}