forked from Eloise1988/COINGECKO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoinGeckoV2.gs
1414 lines (1210 loc) · 200 KB
/
CoinGeckoV2.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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*====================================================================================================================================*
CoinGecko Google Sheet Feed by Eloise1988
====================================================================================================================================
Version: 2.0.4
Project Page: https://github.com/Eloise1988/COINGECKO
Copyright: (c) 2021 by Eloise1988
License: GNU General Public License, version 3 (GPL-3.0)
http://www.opensource.org/licenses/gpl-3.0.html
The following code helped me a lot in optimizing: https://gist.github.com/hesido/c04bab6b8dc9d802e14e53aeb996d4b2
------------------------------------------------------------------------------------------------------------------------------------
A library for importing CoinGecko's price, volume & market cap feeds into Google spreadsheets. Functions include:
GECKOPRICE For use by end users to cryptocurrency prices
GECKOVOLUME For use by end users to cryptocurrency 24h volumes
GECKOCAP For use by end users to cryptocurrency total market caps
GECKOPRICEBYNAME For use by end users to cryptocurrency prices by id, one input only
GECKOVOLUMEBYNAME For use by end users to cryptocurrency 24h volumes by id, one input only
GECKOCAPBYNAME For use by end users to cryptocurrency total market caps by id, one input only
GECKOCHANGE For use by end users to cryptocurrency % change price, volume, mkt
GECKOHIST For use by end users to cryptocurrency historical prices, volumes, mkt
GECKOATH For use by end users to cryptocurrency All Time High Prices
GECKOATL For use by end users to cryptocurrency All Time Low Prices
GECKO24HIGH For use by end users to cryptocurrency 24H Low Price
GECKO24LOW For use by end users to cryptocurrency 24H High Price
GECKO_ID_DATA For use by end users to cryptocurrency data end points
GECKO_LOGO For use by end users to cryptocurrency Logos by ticker
GECKO_LOGOBYNAME For use by end users to cryptocurrency Logos by id
COINGECKO_ID For use by end users to get the coin's id in Coingecko
If ticker isn't functionning please refer to the coin's id you can find in the following JSON pas: https://api.coingecko.com/api/v3/search?locale=fr&img_path_only=1
For bug reports see https://github.com/Eloise1988/COINGECKO/issues
------------------------------------------------------------------------------------------------------------------------------------
Changelog:
2.0.4 May 31st Added functionality COINGECKO PRIVATE KEY
*====================================================================================================================================*/
//CACHING TIME
//Expiration time for caching values, by default caching data last 10min=600sec. This value is a const and can be changed to your needs.
const expirationInSeconds=600;
//COINGECKO PRIVATE KEY
//For unlimited calls to Coingecko's API, please provide your private Key in the brackets
const cg_pro_api_key="";
/** GECKOPRICE
* Imports CoinGecko's cryptocurrency prices into Google spreadsheets. The price feed can be an array of tickers or a single ticker.
* By default, data gets transformed into a array/number so it looks more like a normal price data import.
* For example:
*
* =GECKOPRICE("BTC")
* =GECKOPRICE("BTC-EUR")
* =GECKOPRICE(B16:B35,"CHF")
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {defaultVersusCoin} by default prices are against "usd", only 1 input
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a dimensional array containing the prices
**/
async function GECKOPRICE(ticker_array,defaultVersusCoin){
Utilities.sleep(Math.random() * 100)
try{
pairExtractRegex = /(.*)[/](.*)/, coinSet = new Set(), versusCoinSet = new Set(), pairList = [];
defaultValueForMissingData = null;
if(typeof defaultVersusCoin === 'undefined') defaultVersusCoin = "usd";
defaultVersusCoin=defaultVersusCoin.toLowerCase();
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
let coinList = [...coinSet].join("%2C");
let versusCoinList = [...versusCoinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+versusCoinList+'price');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/simple/price?ids=" + coinList + "&vs_currencies=" + versusCoinList+pro_path_key).getContentText());
var dict = [];
for (var i=0;i<pairList.length;i++) {
if (tickerList.hasOwnProperty(pairList[i][0])) {
if (tickerList[pairList[i][0]].hasOwnProperty(pairList[i][1])) {
dict.push(tickerList[pairList[i][0]][pairList[i][1]]);}
else{dict.push("");}}
else{dict.push("");}
};
cache.put(id_cache,dict,expirationInSeconds);
return dict
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
versusCoinSet.add(pair[1]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
versusCoinSet.add(pair[1]);
}
}}
catch(err){
//return err
return GECKOPRICE(ticker_array,defaultVersusCoin);
}
}
/** GECKOVOLUME
* Imports CoinGecko's cryptocurrencies 24h volumes into Google spreadsheets. The feed can be an array of tickers or a single ticker.
* By default, data gets transformed into an array/number so it looks more like a normal number data import.
* For example:
*
* =GECKOVOLUME("BTC","EUR")
* =GECKOVOLUME(B16:B35)
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return an array containing the 24h volumes
**/
async function GECKOVOLUME(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'vol');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].total_volume;
};
cache.put(id_cache,pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKOVOLUME(ticker_array,currency);
}
}
/** GECKOCAP
* Imports cryptocurrencies total market cap into Google spreadsheets. The feed can be an array of tickers or a single ticker.
* By default, data gets transformed into an array/number
* For example:
*
* =GECKOCAP("BTC","EUR")
* =GECKOCAP(B16:B35)
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @returns an array of market caps
**/
async function GECKOCAP(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'mktcap');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].market_cap;
};
cache.put(id_cache,pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKOCAP(ticker_array,currency);
}
}
/** GECKOCAPDILUTED
* Imports cryptocurrencies total diluted market cap into Google spreadsheets. The feed is a dimensional array.
* For example:
*
* =GECKOCAPDILUTED("BTC","JPY")
* =GECKOCAPDILUTED(B16:B35)
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @returns the fully diluted market caps
**/
async function GECKOCAPDILUTED(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'mktcapdiluted');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].fully_diluted_valuation;
};
cache.put(id_cache,pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKOCAPDILUTED(ticker_array,currency);
}
}
/** GECKO24HPRICECHANGE
* Imports cryptocurrencies 24H percent price change into Google spreadsheets. The feed is a dimensional array.
* For example:
*
* =GECKO24HPRICECHANGE("BTC","EUR")
* =GECKO24HPRICECHANGE(B16:B35)
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @returns the cryptocurrencies 24H percent price change
**/
async function GECKO24HPRICECHANGE(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'GECKO24HPRICECHANGE');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=parseFloat(tickerList[i].price_change_percentage_24h)/100;
};
cache.put(id_cache,pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKO24HPRICECHANGE(ticker_array,currency);
}
}
/** GECKORANK
* Imports cryptocurrencies RANKING into Google spreadsheets. The feed is a dimensional array or single ticker/id.
* For example:
*
* =GECKORANK("BTC")
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @returns the Ranks of cryptocurrencies
**/
async function GECKORANK(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'GECKORANK');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].market_cap_rank;
};
cache.put(id_cache,pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKORANK(ticker_array,currency);
}
}
/** GECKOATH
* Imports CoinGecko's cryptocurrency All Time High Price into Google spreadsheets. The price feed is an array of tickers.
* By default, data gets transformed into an array of numbers so it looks more like a normal price data import.
* For example:
*
* =GECKOATH("ethereum","EUR")
* =GECKOATH(a1:a10)
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a one-dimensional array containing the ATH price
**/
async function GECKOATH(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'ath');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].ath;
};
cache.put(id_cache, pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKOATH(ticker_array,currency);
}
}
/** GECKOATL
* Imports CoinGecko's cryptocurrency All Time Low Price into Google spreadsheets. The price feed is a ONE-dimensional array.
* By default, data gets transformed into a number so it looks more like a normal price data import.
* For example:
*
* =GECKOATL("ethereum","EUR")
* =GECKOATL(a1:a10)
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a one-dimensional array containing the ATL prices
**/
async function GECKOATL(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'atl');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].atl;
};
cache.put(id_cache, pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKOATL(ticker_array,currency);
}
}
/** GECKO24HIGH
* Imports CoinGecko's cryptocurrency 24h High Prices into Google spreadsheets. The price feed is an array/tickers/ids.
* By default, data gets transformed into a number number so it looks more like a normal price data import.
* For example:
*
* =GECKO24HIGH("ethereum","EUR")
* =GECKO24HIGH(a1:a10)
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return an array containing the 24hour high prices
**/
async function GECKO24HIGH(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'GECKO24HIGH');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].high_24h;
};
cache.put(id_cache, pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKO24HIGH(ticker_array,currency);
}
}
/** GECKO24LOW
* Imports CoinGecko's cryptocurrency 24h Low Prices into Google spreadsheets. The price feed is a array.
* By default, data gets transformed into a number so it looks more like a normal price data import.
* For example:
*
* =GECKO24LOW("ethereum","EUR")
* =GECKO24LOW(a1:a10)
*
*
* @param {cryptocurrencies} the cryptocurrency RANGE of tickers/id you want the prices from
* @param {currency} by default "usd", only 1 parameter
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return an array containing the 24h low prices
**/
async function GECKO24LOW(ticker_array,currency){
Utilities.sleep(Math.random() * 100)
try{
let defaultVersusCoin = "usd", coinSet = new Set(), pairExtractRegex = /(.*)[/](.*)/, pairList = [];
defaultValueForMissingData = null;
if(ticker_array.map) ticker_array.map(pairExtract);
else pairExtract(ticker_array);
if(currency) defaultVersusCoin = currency.toLowerCase();
let coinList = [...coinSet].join("%2C");
id_cache=getBase64EncodedMD5(coinList+defaultVersusCoin+'GECKO24LOW');
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
result=cached.split(',');
return result.map(function(n) { return n && ("" || Number(n))});
}
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
let tickerList = JSON.parse(UrlFetchApp.fetch("https://"+ pro_path +".coingecko.com/api/v3/coins/markets?vs_currency=" + defaultVersusCoin + "&ids=" + coinList+pro_path_key).getContentText());
var dict = {};
for (var i=0;i<tickerList.length;i++) {
dict[tickerList[i].id]=tickerList[i].low_24h;
};
cache.put(id_cache, pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || ""),expirationInSeconds);
return pairList.map((pair) => pair[0] && (dict[pair[0]] && (dict[pair[0]] || "") || (defaultValueForMissingData !== null ? defaultValueForMissingData : "")) || "");
function pairExtract(toExtract) {
toExtract = toExtract.toString().toLowerCase();
let match, pair;
if(match = toExtract.match(pairExtractRegex)) {
pairList.push(pair = [CoinList[match[1]] || match[1], match[2]]);
coinSet.add(pair[0]);
}
else {
pairList.push(pair = [CoinList[toExtract] || toExtract, defaultVersusCoin]);
coinSet.add(pair[0]);
}
}
}
catch(err){
//return err
return GECKO24LOW(ticker_array,currency);
}
}
/** GECKOHIST
* Imports CoinGecko's cryptocurrency price change, volume change and market cap change into Google spreadsheets.
* For example:
*
* =GECKOHIST("BTC","LTC","price", "31-12-2020")
* =GECKOHIST("ethereum","USD","volume", "01-01-2021",false)
* =GECKOHIST("YFI","EUR","marketcap","06-06-2020",true)
*
*
* @param {ticker} the cryptocurrency ticker, only 1 parameter
* @param {ticker2} the cryptocurrency ticker against which you want the %chage, only 1 parameter
* @param {price,volume, or marketcap} the type of change you are looking for
* @param {date_ddmmyyy} the date format dd-mm-yyy get open of the specified date, for close dd-mm-yyy+ 1day
* @param {by_ticker boolean} an optional true (data by ticker) false (data by id_name)
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a one-dimensional array containing the historical open price of BTC -LTC on the 31-12-2020
**/
async function GECKOHIST(ticker,ticker2,type, date_ddmmyyy,by_ticker=true){
Utilities.sleep(Math.random() * 100)
ticker=ticker.toUpperCase()
ticker2=ticker2.toLowerCase()
type=type.toLowerCase()
date_ddmmyyy=date_ddmmyyy.toString()
id_cache=ticker+ticker2+type+date_ddmmyyy+'hist'
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
if(by_ticker==true){
try{
url="https://"+ pro_path +".coingecko.com/api/v3/search?locale=fr&img_path_only=1"+pro_path_key;
var res = await UrlFetchApp.fetch(url);
var content = res.getContentText();
var parsedJSON = JSON.parse(content);
for (var i=0;i<parsedJSON.coins.length;i++) {
if (parsedJSON.coins[i].symbol==ticker)
{
id_coin=parsedJSON.coins[i].id.toString();
break;
}
}}
catch(err){
return GECKOHIST(ticker,ticker2,type, date_ddmmyyy,by_ticker=true);
}
}
else{
id_coin=ticker.toLowerCase()
}
// Gets a cache that is common to all users of the script.
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
return Number(cached);
}
try{
url="https://"+ pro_path +".coingecko.com/api/v3/coins/"+id_coin+"/history?date="+date_ddmmyyy+"&localization=false"+pro_path_key;
var res = await UrlFetchApp.fetch(url);
var content = res.getContentText();
var parsedJSON = JSON.parse(content);
if (type=="price"){
vol_gecko=parseFloat(parsedJSON.market_data.current_price[ticker2]).toFixed(4);}
else if (type=="volume")
{ vol_gecko=parseFloat(parsedJSON.market_data.total_volume[ticker2]).toFixed(4);}
else if (type=="marketcap")
{ vol_gecko=parseFloat(parsedJSON.market_data.market_cap[ticker2]).toFixed(4);}
else
{ vol_gecko="Wrong parameter, either price, volume or marketcap";}
if (vol_gecko!="Wrong parameter, either price, volume or marketcap")
cache.put(id_cache, Number(vol_gecko),expirationInSeconds);
return Number(vol_gecko);
}
catch(err){
return GECKOHIST(ticker,ticker2,type, date_ddmmyyy,by_ticker=true);
}
}
/** GECKOCHANGEBYNAME
* Imports CoinGecko's cryptocurrency price change, volume change and market cap change into Google spreadsheets.
* For example:
*
* =GECKOCHANGE("bitcoin","LTC","price", 7)
* =GECKOCHANGE("Ehereum","USD","volume", 1)
* =GECKOCHANGE("litecoin","EUR","marketcap",365)
*
*
* @param {ticker} the cryptocurrency ticker, only 1 parameter
* @param {ticker2} the cryptocurrency ticker/currency against which you want the %change, only 1 parameter
* @param {price,volume, or marketcap} the type of change you are looking for
* @param {nb_days} the number of days you are looking for the price change, 365days=1year price change
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a one-dimensional array containing the 7D% price change on BTC (week price % change).
**/
async function GECKOCHANGEBYNAME(id_coin,ticker2,type, nb_days){
Utilities.sleep(Math.random() * 100)
id_coin=id_coin.toLowerCase()
ticker2=ticker2.toLowerCase()
type=type.toLowerCase()
nb_days=nb_days.toString()
id_cache=id_coin+ticker2+type+nb_days+'changebyname'
// Gets a cache that is common to all users of the script.
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
return Number(cached);
}
try{
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
url="https://"+ pro_path +".coingecko.com/api/v3/coins/"+id_coin+"/market_chart?vs_currency="+ticker2+"&days="+nb_days+pro_path_key;
var res = await UrlFetchApp.fetch(url);
var content = res.getContentText();
var parsedJSON = JSON.parse(content);
if (type=="price")
{ vol_gecko=parseFloat(parsedJSON.prices[parsedJSON.prices.length-1][1]/parsedJSON.prices[0][1]-1).toFixed(4);}
else if (type=="volume")
{ vol_gecko=parseFloat(parsedJSON.total_volumes[parsedJSON.total_volumes.length-1][1]/parsedJSON.total_volumes[0][1]-1).toFixed(4);}
else if (type=="marketcap")
{ vol_gecko=parseFloat(parsedJSON.market_caps[parsedJSON.market_caps.length-1][1]/parsedJSON.market_caps[0][1]-1).toFixed(4);}
else
{ vol_gecko="Wrong parameter, either price, volume or marketcap";}
if (vol_gecko!="Wrong parameter, either price, volume or marketcap")
cache.put(id_cache, Number(vol_gecko),expirationInSeconds);
return Number(vol_gecko);
}
catch(err){
return GECKOCHANGEBYNAME(id_coin,ticker2,type, nb_days);
}
}
/** GECKO_ID_DATA
* Imports CoinGecko's cryptocurrency data point, ath, 24h_low, market cap, price... into Google spreadsheets.
* For example:
*
* =GECKO_ID_DATA("bitcoin","market_data/ath/usd", false)
* =GECKO_ID_DATA("ETH","market_data/ath_change_percentage")
* =GECKO_ID_DATA("LTC","market_data/high_24h/usd",true)
*
*
* @param {ticker} the cryptocurrency ticker, only 1 parameter
* @param {parameter} the parameter separated by "/" ex: "market_data/ath/usd" or "market_data/high_24h/usd"
* @param {by_ticker boolean} an optional true (data by ticker) false (data by id_name)
* @param {parseOptions} an optional fixed cell for automatic refresh of the data
* @customfunction
*
* @return a one-dimensional array containing the specified parameter.
**/
async function GECKO_ID_DATA(ticker,parameter, by_ticker=true){
Utilities.sleep(Math.random() * 100)
ticker=ticker.toUpperCase()
pro_path="api"
pro_path_key=""
if (cg_pro_api_key != "") {
pro_path="pro-api"
pro_path_key="&x_cg_pro_api_key="+cg_pro_api_key
}
if(by_ticker==true){
try{
url="https://"+pro_path+".coingecko.com/api/v3/search?locale=fr&img_path_only=1"+pro_path_key;
var res = await UrlFetchApp.fetch(url);
var content = res.getContentText();
var parsedJSON = JSON.parse(content);
for (var i=0;i<parsedJSON.coins.length;i++) {
if (parsedJSON.coins[i].symbol==ticker)
{
id_coin=parsedJSON.coins[i].id.toString();
id_cache=ticker+parameter+'gecko_id_data'
break;
}
}}
catch(err){
return GECKO_ID_DATA(ticker,parameter, by_ticker);
}
}
else{
id_coin=ticker.toLowerCase()
id_cache=id_coin+parameter+'gecko_id_data'
}
// Gets a cache that is common to all users of the script.
var cache = CacheService.getScriptCache();
var cached = cache.get(id_cache);
if (cached != null) {
return cached;
}
try{
let parameter_array=parameter.split('/');
//Logger.log(parameter_array)
url="https://"+ pro_path +".coingecko.com/api/v3/coins/"+id_coin+pro_path_key;
var res = await UrlFetchApp.fetch(url);
var content = res.getContentText();
var parsedJSON = JSON.parse(content);