-
Notifications
You must be signed in to change notification settings - Fork 27
/
mapping.js
337 lines (337 loc) · 8.14 KB
/
mapping.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
exports.mapping = {
'currencies/eur-usd': {
pairId: '1',
title: 'EUR/USD - Euro US Dollar',
name: 'EUR/USD'
},
'currencies/gbp-usd': {
pairId: '2',
title: 'GBP/USD - British Pound US Dollar',
name: 'GBP/USD'
},
'currencies/usd-jpy': {
pairId: '3',
title: 'USD/JPY - US Dollar Japanese Yen',
name: 'USD/JPY'
},
'currencies/aud-usd': {
pairId: '5',
title: 'AUD/USD - Australian Dollar US Dollar',
name: 'AUD/USD'
},
'currencies/usd-cad': {
pairId: '7',
title: 'USD/CAD - US Dollar Canadian Dollar',
name: 'USD/CAD'
},
'currencies/eur-jpy': {
pairId: '9',
title: 'EUR/JPY - Euro Japanese Yen',
name: 'EUR/JPY'
},
'currencies/eur-chf': {
pairId: '10',
title: 'EUR/CHF - Euro Swiss Franc',
name: 'EUR/CHF'
},
'currencies/us-dollar-index': {
pairId: '8827',
title: 'US Dollar Index Futures',
name: 'Dollar index'
},
'commodities/gold': {
pairId: '8830',
title: 'Gold Futures',
name: 'Gold'
},
'commodities/silver': {
pairId: '8836',
title: 'Silver Futures',
name: 'Silver'
},
'commodities/copper': {
pairId: '8831',
title: 'Copper Futures',
name: 'Copper'
},
'commodities/crude-oil': {
pairId: '8849',
title: 'Crude Oil WTI Futures',
name: 'Crude Oil WTI'
},
'commodities/brent-oil': {
pairId: '8833',
title: 'Brent Oil Futures',
name: 'Brent Oil'
},
'commodities/natural-gas': {
pairId: '8862',
title: 'Natural Gas Futures',
name: 'Natural Gas'
},
'commodities/us-coffee-c': {
pairId: '8832',
title: 'US Coffee C Futures',
name: 'US Coffee C'
},
'commodities/us-wheat': {
pairId: '8917',
title: 'US Wheat Contract',
name: 'US Wheat'
},
'indices/us-30': {
pairId: '169',
title: 'Dow Jones Industrial Average (NYSE)',
name: 'Dow 30'
},
'indices/nq-100': {
pairId: '20',
title: 'Nasdaq 100 (NASDAQ)',
name: 'Nasdaq 100'
},
'indices/us-spx-500': {
pairId: '166',
title: 'S&P 500 (NYSE)',
name: 'S&P 500'
},
'indices/germany-30': {
pairId: '172',
title: 'DAX (Xetra)',
name: 'DAX'
},
'indices/uk-100': {
pairId: '27',
title: 'FTSE 100 (London)',
name: 'FTSE 100'
},
'indices/france-40': {
pairId: '167',
title: 'CAC 40 (Paris)',
name: 'CAC 40'
},
'indices/japan-ni225': {
pairId: '178',
title: 'Nikkei 225 (Tokyo)',
name: 'Nikkei 225'
},
'indices/it-mib-40': {
pairId: '177',
title: 'FTSE MIB',
name: 'FTSE MIB'
},
'crypto/bitcoin/btc-usd': {
pairId: '945629',
title: 'BTC/USD - Bitcoin US Dollar',
name: 'BTC/USD'
},
'crypto/ethereum/eth-usd?c997650': {
pairId: '997650',
title: 'ETH/USD - Ethereum US Dollar',
name: 'ETH/USD'
},
'crypto/bitcoin-cash/bch-usd': {
pairId: '1058255',
title: 'BCH/USD - Bitcoin Cash US Dollar',
name: 'BCH/USD'
},
'crypto/iota/iota-usd': {
pairId: '1031068',
title: 'IOTA/USD - IOTA US Dollar',
name: 'IOTA/USD'
},
'crypto/litecoin/ltc-usd?c1010798': {
pairId: '1010798',
title: 'LTC/USD - Litecoin US Dollar',
name: 'LTC/USD'
},
'crypto/xrp/xrp-usd?c1010782': {
pairId: '1010782',
title: 'XRP/USD - XRP US Dollar',
name: 'XRP/USD'
},
'crypto/bitcoin/btc-eur': {
pairId: '1010801',
title: 'BTC/EUR - Bitcoin Euro',
name: 'BTC/EUR'
},
'crypto/dash/dash-usd': {
pairId: '1010785',
title: 'DASH/USD - Dash US Dollar',
name: 'DASH/USD'
},
'equities/bank-of-america': {
pairId: '243',
title: 'Bank of America Corp (NYSE)',
name: 'Bank of America'
},
'equities/jp-morgan-chase': {
pairId: '267',
title: 'JPMorgan Chase & Co (NYSE)',
name: 'JPMorgan'
},
'equities/apple-computer-inc': {
pairId: '6408',
title: 'Apple Inc (NASDAQ)',
name: 'Apple'
},
'equities/google-inc': {
pairId: '6369',
title: 'Alphabet Inc Class A (NASDAQ)',
name: 'Alphabet A'
},
'equities/tesla-motors': {
pairId: '13994',
title: 'Tesla Inc (NASDAQ)',
name: 'Tesla'
},
'equities/amazon-com-inc': {
pairId: '6435',
title: 'Amazon.com Inc (NASDAQ)',
name: 'Amazon.com'
},
'equities/facebook-inc': {
pairId: '26490',
title: 'Facebook Inc (NASDAQ)',
name: 'Facebook'
},
'equities/adv-micro-device': {
pairId: '8274',
title: 'Advanced Micro Devices Inc (NASDAQ)',
name: 'AMD'
},
'equities/nvidia-corp': {
pairId: '6497',
title: 'NVIDIA Corporation (NASDAQ)',
name: 'NVIDIA'
},
'equities/alibaba': {
pairId: '941155',
title: 'Alibaba Group Holdings Ltd ADR (NYSE)',
name: 'Alibaba ADR'
},
'equities/netflix,-inc.': {
pairId: '13063',
title: 'Netflix Inc (NASDAQ)',
name: 'Netflix'
},
'rates-bonds/u.s.-3-month-bond-yield': {
pairId: '23698',
title: 'United States 3-Month Bond Yield (NYSE)',
name: 'U.S. 3M'
},
'rates-bonds/u.s.-2-year-bond-yield': {
pairId: '23701',
title: 'United States 2-Year (NYSE)',
name: 'U.S. 2Y'
},
'rates-bonds/u.s.-5-year-bond-yield': {
pairId: '23703',
title: 'United States 5-Year (NYSE)',
name: 'U.S. 5Y'
},
'rates-bonds/u.s.-10-year-bond-yield': {
pairId: '23705',
title: 'United States 10-Year (NYSE)',
name: 'U.S. 10Y'
},
'rates-bonds/u.s.-30-year-bond-yield': {
pairId: '23706',
title: 'United States 30-Year (NYSE)',
name: 'U.S. 30Y'
},
'rates-bonds/euro-bund': {
pairId: '8895',
title: 'Euro Bund Futures',
name: 'Euro Bund'
},
'rates-bonds/us-10-yr-t-note': {
pairId: '8880',
title: 'US 10 Year T-Note Futures',
name: 'US 10Y T-Note'
},
'rates-bonds/us-30-yr-t-bond': {
pairId: '8907',
title: 'US 30 Year T-Bond Contract',
name: 'US 30Y T-Bond'
},
'rates-bonds/japan-govt.-bond': {
pairId: '8986',
title: 'Japan Government Bond Futures',
name: 'Japan Govt. Bond'
},
'rates-bonds/uk-gilt': {
pairId: '8886',
title: 'UK Gilt Futures',
name: 'UK Gilt'
},
'rates-bonds/de-10y-vs-it-10y': {
pairId: '1079965',
title: 'Italy 10 Year vs Germany 10 Year Spread Bond Yield',
name: 'Spread BTP-Bund 10Y'
},
'etfs/diamonds-trust': {
pairId: '504',
title: 'SPDR® Dow Jones Industrial Average ETF Trust (NYSE)',
name: 'SPDR DJIA'
},
'etfs/ishares-russell-1000-growth': {
pairId: '44554',
title: 'iShares Russell 1000 Growth ETF (NYSE)',
name: 'iShares Russell 1000 Growth'
},
'etfs/ishares-russell-2000-index-etf': {
pairId: '14202',
title: 'iShares Russell 2000 ETF (NYSE)',
name: 'iShares Russell 2000'
},
'etfs/powershares-qqqq': {
pairId: '651',
title: 'Invesco QQQ Trust (NASDAQ)',
name: 'Invesco QQQ Trust Series 1'
},
'etfs/spdr-s-p-500': {
pairId: '525',
title: 'SPDR S&P 500 (NYSE)',
name: 'SPDR S&P 500'
},
'etfs/proshares-ultrashort-s-p500': {
pairId: '14210',
title: 'ProShares UltraShort S&P500 (NYSE)',
name: 'ProShares UltraShort S&P500'
},
'etfs/proshares-ultrashort-qqq-etf': {
pairId: '14206',
title: 'ProShares UltraShort QQQ (NYSE)',
name: 'ProShares UltraShort QQQ'
},
'etfs/market-vectors-gold-miners': {
pairId: '40681',
title: 'VanEck Vectors Gold Miners ETF (NYSE)',
name: 'VanEck Vectors Gold Miners'
},
'etfs/united-states-oil-fund': {
pairId: '44794',
title: 'United States Oil Fund, LP (NYSE)',
name: 'United States Oil'
},
'funds/vanguard-500-index-admiral': {
pairId: '997364',
title: 'Vanguard 500 Index Fund Admiral Shares',
name: 'Vanguard 500 Index Admiral'
},
'funds/vanguard-total-bond-market-ii-idx-i': {
pairId: '997994',
title: 'Vanguard Total Bond Market Ii Index Fund Investor Shares',
name: 'Vanguard Total Bond Market II Index Fund Investor'
},
'funds/american-funds-capital-income-bldr': {
pairId: '997995',
title: 'American Funds Capital Income Builder® Class A',
name: 'American Funds Capital Income Builder A'
},
'funds/pimco-commodity-real-ret-strat-inst': {
pairId: '1005582',
title: 'Pimco Commodityrealreturn Strategy Fund Institutional Class',
name: 'PIMCO Commodity Real Return Strategy Institutional'
}
}