-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.gs
749 lines (681 loc) · 22.8 KB
/
code.gs
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
const CONFIG = {
CEX_LIST: ['KuCoin', 'MEXC', 'ASCENDEX', 'GATE', 'BITGET', 'HTX']
};
function updateCEXData() {
Logger.log('Starting updateCEXData function');
const ss = SpreadsheetApp.getActive();
const sheet = ss.getSheetByName('CEX Hourly Average');
// Get the last row with data
const lastRow = getLastRowWithData(sheet);
// Calculate starting row for new data (lastRow + 2 for spacing)
const startRow = lastRow === 1 ? 2 : lastRow + 1;
// Get current date
const currentDate = new Date();
const formattedDate = Utilities.formatDate(currentDate, 'GMT', 'yyyy-MM-dd HH:mm');
// Prepare data for each CEX
const newData = [];
for (const cex of CONFIG.CEX_LIST) {
const rowData = getCEXData(cex);
newData.push([
formattedDate,
cex,
rowData.plusTwoPercent.toFixed(3),
rowData.minusTwoPercent.toFixed(3),
rowData.spread.toFixed(3),
rowData.volume.toFixed(3)
]);
}
// Write data to sheet
sheet.getRange(startRow, 1, newData.length, 6).setValues(newData);
var range = sheet.getRange(2, 1, sheet.getLastRow() - 1, sheet.getLastColumn());
// Sort by second column (ascending), then by first column (descending)
range.sort([
{column: 1, ascending: false},
{column: 6, ascending: false}
]);
createSummary()
cleanUpData()
}
// Function to get the last row with data
function getLastRowWithData(sheet) {
const lastRow = sheet.getLastRow();
if (lastRow === 0) return 1; // Return 1 if sheet is empty (for headers)
// Check the last row in column A (Date)
const values = sheet.getRange("A1:A" + lastRow).getValues();
for (let i = values.length - 1; i >= 0; i--) {
if (values[i][0] !== "") {
return i + 1;
}
}
return 1;
}
// Function to get data for a specific CEX
// This is where you would integrate your API calls
// Function to fetch AscendEX data
function fetchAscendEXData(symbol = 'ROUTE/USDT') {
try {
Logger.log('Starting AscendEX data fetch for symbol: ' + symbol);
// Fetch ticker data
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const tickerResponse = UrlFetchApp.fetch(
`https://ascendex.com/api/pro/v1/spot/ticker?symbol=${symbol}`,
tickerOptions
);
Logger.log('Ticker Response Status: ' + tickerResponse.getResponseCode());
const tickerData = JSON.parse(tickerResponse.getContentText());
Logger.log('Ticker Data: ' + JSON.stringify(tickerData));
// Fetch orderbook data
const orderbookOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const orderbookResponse = UrlFetchApp.fetch(
`https://ascendex.com/api/pro/v1/depth?symbol=${symbol}`,
orderbookOptions
);
Logger.log('Orderbook Response Status: ' + orderbookResponse.getResponseCode());
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Calculate depth values
const lastTradedPrice = parseFloat(tickerData.data.close);
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for both +2% and -2% depth calculation
orderbookData.data.data.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price <= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
orderbookData.data.data.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price >= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Calculate spread using ask and bid from ticker data
const askPrice = parseFloat(tickerData.data.ask[0]);
const bidPrice = parseFloat(tickerData.data.bid[0]);
const spread = ((askPrice - bidPrice) / bidPrice * 100).toFixed(2);
// Get volume from ticker data
const volume = parseFloat(tickerData.data.volume);
Logger.log('Calculated values:');
Logger.log('Plus Two Percent:', totalValues["+2%"]);
Logger.log('Minus Two Percent:', totalValues["-2%"]);
Logger.log('Spread:', spread);
Logger.log('Volume:', volume * lastTradedPrice);
// Return processed data
return {
plusTwoPercent: parseFloat(totalValues["+2%"].toFixed(2)),
minusTwoPercent: parseFloat(totalValues["-2%"].toFixed(2)),
spread: parseFloat(spread),
volume: volume * lastTradedPrice
};
} catch (error) {
Logger.log('Error fetching AscendEX data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function fetchMEXCData(symbol = 'ROUTEUSDT') {
try {
Logger.log('Starting MEXC data fetch for symbol: ' + symbol);
// Fetch ticker data
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const tickerResponse = UrlFetchApp.fetch(
`https://api.mexc.com/api/v3/ticker/24hr?symbol=${symbol}`,
tickerOptions
);
Logger.log('Ticker Response Status: ' + tickerResponse.getResponseCode());
const tickerData = JSON.parse(tickerResponse.getContentText());
Logger.log('Ticker Data: ' + JSON.stringify(tickerData));
// Fetch orderbook data
const orderbookOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const orderbookResponse = UrlFetchApp.fetch(
`https://api.mexc.com/api/v3/depth?symbol=${symbol}&limit=20`,
orderbookOptions
);
Logger.log('Orderbook Response Status: ' + orderbookResponse.getResponseCode());
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Calculate depth values
const lastTradedPrice = parseFloat(tickerData.lastPrice);
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for +2% depth calculation
orderbookData.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
if (price >= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
// Process asks for -2% depth calculation
orderbookData.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
if (price <= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Calculate spread using bid and ask from ticker data
const spread = ((parseFloat(tickerData.askPrice) - parseFloat(tickerData.bidPrice)) /
parseFloat(tickerData.bidPrice)) * 100;
// Return processed data
return {
plusTwoPercent: totalValues["+2%"],
minusTwoPercent: totalValues["-2%"],
spread: spread,
volume: parseFloat(tickerData.quoteVolume)
};
} catch (error) {
Logger.log('Error fetching MEXC data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function fetchKuCoinData(symbol = 'ROUTE-USDT') {
try {
Logger.log('Starting KuCoin data fetch for symbol: ' + symbol);
// Fetch ticker data with options
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const tickerResponse = UrlFetchApp.fetch(
`https://api.kucoin.com/api/v1/market/stats?symbol=${symbol}`,
tickerOptions
);
Logger.log('Ticker Response Status: ' + tickerResponse.getResponseCode());
const tickerData = JSON.parse(tickerResponse.getContentText());
Logger.log('Ticker Data: ' + JSON.stringify(tickerData));
// Fetch orderbook data with options
const orderbookOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const orderbookResponse = UrlFetchApp.fetch(
`https://api.kucoin.com/api/v1/market/orderbook/level2_20?symbol=${symbol}`,
orderbookOptions
);
Logger.log(orderbookResponse)
Logger.log('Orderbook Response Status: ' + orderbookResponse.getResponseCode());
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Calculate depth values
const lastTradedPrice = parseFloat(tickerData.data.last);
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for +2% depth calculation
orderbookData.data.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
if (price >= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
// Process asks for -2% depth calculation
orderbookData.data.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
if (price <= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Calculate spread
const spread = ((parseFloat(tickerData.data.sell) - parseFloat(tickerData.data.buy)) /
parseFloat(tickerData.data.buy)) * 100;
// Return processed data
return {
plusTwoPercent: totalValues["+2%"],
minusTwoPercent: totalValues["-2%"],
spread: spread,
volume: parseFloat(tickerData.data.volValue)
};
} catch (error) {
Logger.log('Error fetching KuCoin data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function fetchGateData(symbol = 'ROUTE_USDT') {
try {
Logger.log('Starting Gate.io data fetch for symbol: ' + symbol);
// Fetch ticker data
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const tickerResponse = UrlFetchApp.fetch(
`https://api.gateio.ws/api/v4/spot/tickers?currency_pair=${symbol}`,
tickerOptions
);
Logger.log('Ticker Response Status: ' + tickerResponse.getResponseCode());
const tickerData = JSON.parse(tickerResponse.getContentText());
Logger.log('Ticker Data: ' + JSON.stringify(tickerData));
// Fetch orderbook data
const orderbookOptions = {
'method': 'get',
'muteHttpExceptions': true
};
const orderbookResponse = UrlFetchApp.fetch(
`https://api.gateio.ws/api/v4/spot/order_book?currency_pair=${symbol}`,
orderbookOptions
);
Logger.log('Orderbook Response Status: ' + orderbookResponse.getResponseCode());
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Fetch trade data for last price
const tradesResponse = UrlFetchApp.fetch(
`https://api.gateio.ws/api/v4/spot/trades?currency_pair=${symbol}`,
tickerOptions
);
const tradesData = JSON.parse(tradesResponse.getContentText());
const lastTradedPrice = parseFloat(tradesData[0].price);
// Calculate depth values
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for depth calculation
orderbookData.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price >= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
orderbookData.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price <= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Calculate spread
const askPrice = parseFloat(tickerData[0].lowest_ask);
const bidPrice = parseFloat(tickerData[0].highest_bid);
const spread = ((askPrice - bidPrice) / bidPrice * 100).toFixed(2);
// Return processed data
return {
plusTwoPercent: totalValues["+2%"],
minusTwoPercent: totalValues["-2%"],
spread: parseFloat(spread),
volume: parseFloat(tickerData[0].quote_volume)
};
} catch (error) {
Logger.log('Error fetching Gate.io data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function fetchBitgetData(symbol = 'ROUTEUSDT') {
try {
Logger.log('Starting Bitget data fetch for symbol: ' + symbol);
// Fetch ticker data
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
// Get ticker data version 2 for last price
const tickerV2Response = UrlFetchApp.fetch(
`https://api.bitget.com/api/v2/spot/market/tickers?symbol=${symbol}`,
tickerOptions
);
const tickerV2Data = JSON.parse(tickerV2Response.getContentText());
Logger.log('Ticker V2 Data: ' + JSON.stringify(tickerV2Data));
// Get ticker data version 1 for other stats
const tickerV1Response = UrlFetchApp.fetch(
`https://api.bitget.com/api/spot/v1/market/ticker?symbol=${symbol}_SPBL`,
tickerOptions
);
const tickerV1Data = JSON.parse(tickerV1Response.getContentText());
Logger.log('Ticker V1 Data: ' + JSON.stringify(tickerV1Data));
// Fetch orderbook data
const orderbookResponse = UrlFetchApp.fetch(
`https://api.bitget.com/api/v2/spot/market/orderbook?symbol=${symbol}&type=step0&limit=100`,
tickerOptions
);
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Calculate depth values
const lastTradedPrice = parseFloat(tickerV2Data.data[0].lastPr);
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for both +2% and -2% depth calculation
orderbookData.data.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price >= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
// Process bids for both +2% and -2% depth calculation
orderbookData.data.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
if (price <= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Get quote volume and spread from ticker data
const volume = parseFloat(tickerV2Data.data[0].usdtVolume);
const askPrice = parseFloat(tickerV2Data.data[0].askPr);
const bidPrice = parseFloat(tickerV2Data.data[0].bidPr);
const spread = ((askPrice - bidPrice) / bidPrice * 100).toFixed(2);
// Return processed data
return {
plusTwoPercent: totalValues["+2%"],
minusTwoPercent: totalValues["-2%"],
spread: parseFloat(spread),
volume: volume
};
} catch (error) {
Logger.log('Error fetching Bitget data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function fetchHTXData(symbol = 'routeusdt') {
try {
Logger.log('Starting HTX data fetch for symbol: ' + symbol);
// Fetch ticker data
const tickerOptions = {
'method': 'get',
'muteHttpExceptions': true
};
// Get trade data
const tickerResponse = UrlFetchApp.fetch(
`https://api.huobi.pro/market/trade?symbol=${symbol}`,
tickerOptions
);
Logger.log('Trade Response Status: ' + tickerResponse.getResponseCode());
const tickerData = JSON.parse(tickerResponse.getContentText());
Logger.log('Trade Data: ' + JSON.stringify(tickerData));
// Get orderbook data
const orderbookResponse = UrlFetchApp.fetch(
`https://api.huobi.pro/market/depth?symbol=${symbol}&depth=5&type=step0`,
tickerOptions
);
Logger.log('Orderbook Response Status: ' + orderbookResponse.getResponseCode());
const orderbookData = JSON.parse(orderbookResponse.getContentText());
Logger.log('Orderbook Data: ' + JSON.stringify(orderbookData));
// Calculate depth values
const lastTradedPrice = tickerData.tick.data[0].price;
const ranges = {
"+2%": lastTradedPrice * 1.02,
"-2%": lastTradedPrice * 0.98
};
const totalValues = {
"+2%": 0,
"-2%": 0
};
// Process bids for both +2% and -2% depth calculation
orderbookData.tick.bids.forEach(bid => {
const price = parseFloat(bid[0]);
const quantity = parseFloat(bid[1]);
const value = price * quantity;
// Calculate totals for ranges
if (price >= ranges["-2%"]) {
totalValues["-2%"] += value;
}
});
orderbookData.tick.asks.forEach(ask => {
const price = parseFloat(ask[0]);
const quantity = parseFloat(ask[1]);
const value = price * quantity;
if (price <= ranges["+2%"]) {
totalValues["+2%"] += value;
}
});
// Get spread using best ask and bid from orderbook
const askPrice = parseFloat(orderbookData.tick.asks[0][0]);
const bidPrice = parseFloat(orderbookData.tick.bids[0][0]);
const spread = ((askPrice - bidPrice) / bidPrice * 100).toFixed(2);
// Get 24h market details for volume
const detailResponse = UrlFetchApp.fetch(
`https://api.huobi.pro/market/detail?symbol=${symbol}`,
tickerOptions
);
const detailData = JSON.parse(detailResponse.getContentText());
const volume = parseFloat(detailData.tick.vol);
Logger.log('Calculated values:');
Logger.log('Plus Two Percent:', totalValues["+2%"]);
Logger.log('Minus Two Percent:', totalValues["-2%"]);
Logger.log('Spread:', spread);
Logger.log('Volume:', volume);
// Return processed data
return {
plusTwoPercent: totalValues["+2%"],
minusTwoPercent: totalValues["-2%"],
spread: parseFloat(spread),
volume: volume
};
} catch (error) {
Logger.log('Error fetching HTX data: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
function sendBitgetHourlyUpdate() {
try {
// Fetch Bitget data
const bitgetData = fetchBitgetData('ROUTEUSDT');
// Format the message with metrics
let message = {
"text": "Bitget Hourly Update",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":chart_with_upwards_trend: *Bitget Hourly Market Update* :chart_with_upwards_trend:"
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": `*Current Metrics:*\n
• Spread: ${bitgetData.spread.toFixed(3)}%
• +2% Depth: $${bitgetData.plusTwoPercent.toFixed(2)}
• -2% Depth: $${bitgetData.minusTwoPercent.toFixed(2)}
• 24h Volume: $${bitgetData.volume.toLocaleString()}`
}
},
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": `Last updated: ${new Date().toUTCString()}`
}
]
}
]
};
// Send to Slack
const webhook = "WEBHOOK";
var options = {
"method": "post",
"contentType": "application/json",
"muteHttpExceptions": true,
"payload": JSON.stringify(message)
};
UrlFetchApp.fetch(webhook, options);
Logger.log('Bitget hourly update sent successfully');
} catch(error) {
Logger.log('Error sending Bitget hourly update: ' + error);
}
}
// Create a trigger to run this function hourly
function createHourlyTrigger() {
// Delete any existing triggers with the same function name
const triggers = ScriptApp.getProjectTriggers();
triggers.forEach(trigger => {
if(trigger.getHandlerFunction() === 'sendBitgetHourlyUpdate') {
ScriptApp.deleteTrigger(trigger);
}
});
// Create new hourly trigger
ScriptApp.newTrigger('sendBitgetHourlyUpdate')
.timeBased()
.everyHours(1)
.create();
}
function getCEXData(cexName) {
Logger.log('Getting data for CEX: ' + cexName);
try {
switch(cexName) {
case 'KuCoin':
const kuCoinData = fetchKuCoinData('ROUTE-USDT');
Logger.log('KuCoin data fetched: ' + JSON.stringify(kuCoinData));
return kuCoinData;
case 'MEXC':
const mexcData = fetchMEXCData('ROUTEUSDT');
Logger.log('MEXC data fetched: ' + JSON.stringify(mexcData));
return mexcData;
case 'ASCENDEX':
const ascendexData = fetchAscendEXData('ROUTE/USDT');
Logger.log('AscendEX data fetched: ' + JSON.stringify(ascendexData));
return ascendexData;
case 'GATE':
const gateData = fetchGateData('ROUTE_USDT');
Logger.log('Gate.io data fetched: ' + JSON.stringify(gateData));
return gateData;
case 'BITGET':
const bitgetData = fetchBitgetData('ROUTEUSDT');
Logger.log('Bitget data fetched: ' + JSON.stringify(bitgetData));
return bitgetData;
case 'HTX':
const HTXData = fetchHTXData('routeusdt');
Logger.log('HTX data fetched: ' + JSON.stringify(HTXData));
return HTXData;
default:
Logger.log('nothing just logging.');
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
} catch (error) {
Logger.log('Error in getCEXData: ' + error);
return {
plusTwoPercent: 0,
minusTwoPercent: 0,
spread: 0,
volume: 0
};
}
}
// Test function to debug MEXC API
function testMEXCAPI() {
Logger.log('Starting MEXC API test');
try {
const data = fetchMEXCData('ROUTEUSDT');
Logger.log('Test results:');
Logger.log('Volume:', data.volume.toLocaleString());
Logger.log('Spread:', data.spread);
Logger.log('-2%:', data.minusTwoPercent.toFixed(2));
Logger.log('+2%:', data.plusTwoPercent.toFixed(2));
} catch (error) {
Logger.log('Test error: ' + error);
}
}
// Test function to debug KuCoin API
function testKuCoinAPI() {
Logger.log('Starting KuCoin API test');
try {
const data = fetchKuCoinData('ROUTE-USDT');
Logger.log('Test results:');
Logger.log('Plus Two Percent: ' + data.plusTwoPercent);
Logger.log('Minus Two Percent: ' + data.minusTwoPercent);
Logger.log('Spread: ' + data.spread);
Logger.log('Volume: ' + data.volume);
} catch (error) {
Logger.log('Test error: ' + error);
}
}