-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathownedAssets.js
48 lines (46 loc) · 900 Bytes
/
ownedAssets.js
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
const stocks = [
{
symbol: 'AIR',
title: 'Airbus',
volume: 90,
average: 56.8880,
country: 'france'
},
{
symbol: 'SOGN',
title: 'Société générale',
volume: 10,
average: 13.5850,
country: 'france'
},
{
symbol: 'ERI',
title: 'Eldorado resorts',
volume: 50,
average: 11.1720,
country: 'united-states'
},
{
symbol: 'CCL',
title: 'Carnival',
volume: 50,
average: 12.5240,
country: 'united-states'
},
{
symbol: 'RWT',
title: 'Redwood trust',
volume: 100,
average: 3.1910,
country: 'united-states'
}
]
const cryptos = [
{
symbol: 'XRP/EUR',
title: 'XRP',
volume: 4003.7316,
average: 0.157211
}
]
export { stocks, cryptos }