forked from finance-quote/finance-quote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modules-README.yml
1045 lines (1045 loc) · 19.1 KB
/
Modules-README.yml
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
# Modules
# vi: set filetype=yaml syntax=yaml noai ts=2 sw=2 ic:
# state: working | failing | obsolete | removed
---
- module: AEX.pm
state: working
added: TBD
changed: 2022-10-18
removed: ~
urls:
- https://live.euronext.com/en/search_instruments/
- https://live.euronext.com/en/ajax/getDetailedQuote/
- https://live.euronext.com/en/intraday_chart/getDetailedQuoteAjax/
apikey: false
notes: ~
testfile: aex.t
testcases:
- AD
- AMG
- LVMH
- XS0937858271
- NL0000009165
#
- module: AIAHK.pm
state: working
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: aiahk.t
testcases:
- ABD-AUS.EQ
- AIG-EUSC.U
- FID-JP.ADV
- SCH-HKEQ
#
- module: ASEGR.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: >-
Broken and recommended for removal. All active securities are tested to be available
from YahooJSON (and possibly other sources).
testfile: asegr.t
testcases:
#
- module: ASX.pm
state: working
added: TBD
changed: 2020-10-12
removed: ~
urls:
apikey: false
notes: >-
Most securities are available from YahooJSON (and possibly other sources).
testfile: asx.t
testcases:
- WES
- BOQ
- XRO
- IAG
- TLS
- NABHA
- XAO
#
- module: AlphaVantage.pm
state: working
added:
changed: 2019-12-01
removed:
urls:
- https://www.alphavantage.co/query?function=GLOBAL_QUOTE&apikey=$ALPHAVANTAGE_API_KEY&symbol=
apikey: true
notes: |
Module to acquire data from https://www.alphavantage.co/.
Users must first request an API key and set the environment
variable ALPHAVANTAGE_API_KEY.
testfile: alphavantage.t
testcases:
- IBM
- CSCO
- SOLB.BR
- SAP.DE
- TD.TO
- LSE.L
- VFIAX
- T
- DIVO11.SA
- OGZD.IL
- TWTR
- AAPL
- ORCL
- FB
- CMCSA
- INTC
- NFLX
- TSLA
- NOK
- BAC
- GOOG
- F
- AXP
- ERIC-B.STO
#
- module: BMONesbittBurns.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: BSEIndia.pm
state: working
added: 2020-06-27
changed:
removed:
urls:
- https://www.bseindia.com/download/BhavCopy/Equity/EQ_ISINCODE_${DDMMYY}.zip
methods:
- india
- bseindia
apikey: false
notes: |
Module to fetch equity quotes from https://www.bseindia.com/
testfile: bseindia.t
testcases:
- 500010
- 532540
- INE009A01021
- INE062A01020
#
- module: BSERO.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Bloomberg.pm
state: working
added:
changed: 2022-04-17
removed:
urls: https://www.bloomberg.com/quote/
apikey: false
notes:
testfile: bloomberg.t
testcases:
- MSFT:US
- AMZN:US
- AAPL:US
- GOOGL:US
- FB:US
#
- module: Bourso.pm
state: working
added:
changed: 2023-05-22
removed:
urls: https://www.boursorama.com/cours/$stock
apikey: false
notes: The test file checks for specific values returned and may falsly report errors when the information correctly returned from the URL changes.
testfile: bourso.t
testcases:
- MP-802941
- 1rPAF
- MSFT
- FF11-SOLB
- 2rPDE000CX0QLH6
- 1rPFR0010371401
- 1rPCAC
- 1rTBX4
- FR0010037341
#
- module: CSE.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Cdnfundlibrary.pm
state: failing
added: TBD
changed: 2019-12-01
removed: ~
urls:
- https://www.fundlibrary.com/MutualFunds/GetFundSearchResults?cifscCategoryId=0&fundCompanyId=0&fundTypeId=0&isGradeA=true&isGradeB=true&isGradeC=true&isGradeD=true&isGradeE=true&sortBy=Default&page=0&searchText=
apikey: false
notes: ~
testfile: cdnfundlibrary.t
testcases:
- NBC887
- TDB3533
#
- module: Citywire.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Cominvest.pm
state: failing
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Currencies.pm
state: working
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: CurrencyRates/AlphaVantage.pm
state: working
Added: TBD
changed: 2022-11-23
removed: ~
urls: https://www.alphavantage.co/query?function=CURRENCY_EXCHANGE_RATE
apikey: true
notes: |
Recently modified for Issue #229 in PR #230
The commit/PR was reverted 2022-11-23 (PR #249), AlphaVantage changed
the CURRENCY_EXCHANGE_RATE to no longer require a premium API Key.
testfile: currency.t
testcases:
- GBP IQD
- AUD AUD
#
- module: CurrencyRates/YahooJSON.pm
state: working
Added: 2023-04-09
changed: 2023-05-26
removed: ~
urls: https://query2.finance.yahoo.com/v11/finance/quoteSummary/...?modules=price
apikey: false
notes: |
URL is constructed by adding "$from$to%3DX" to Yahoo URL.
Can be used for crypto by adding "$from-$to" to the URL.
testfile: currency.t
testcases:
- USD EUR
- GBP IDR
- IDR CAD
- AUD AUD
#
- module: DWS.pm
state: working
added: TBD
changed: 2022-09-28
removed: ~
urls: https://www.deami.de/dps/ff/prices.aspx
apikey: false
notes: Test file checks that name returned in JSON matches hard coded value in dws.t
testfile: dws.t
testcases:
- 848646
- DE0008486465
- LU0358627221
#
- module: Deka.pm
state: working
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: deka.t
testcases:
- DE0008474511
- LU0051755006
#
- module: Fondsweb.pm
state: working
added: TBD
changed: 2022-11-21
removed: ~
urls: https://www.fondsweb.com/de/
apikey: false
notes: ~
testfile: fondsweb.t
testcases:
- LU0804734787
- DE0008491002
- DE0008474503
- DE0008491051
- DE0009805507
#
- module: FTPortfolios.pm
state: failing
added: TBD
changed: ~
removed: 2021-01-03
urls: https://www.ftportfolios.com/
apikey: false
notes: Commit 2f0f6bd removed module and testfile. Last commit with module is 75412c0.
testfile: ftportfolios.t
testcases:
#
- module: FTfunds.pm
state: working
added: 2014-03-02
changed: 2023-04-09
removed: ~
urls:
- https://markets.ft.com/data/funds/tearsheet/summary?s=
- http://funds.ft.com/UnlistedTearsheet/Summary?s=
apikey: false
notes:
- Added date is an estimate. According to Git log it first appeared in commit fdd204b.
testfile: ftfunds.t
testcases:
- GB0031834814
- GB0030881337
- GB0003865176
- GB00B7W6PR65
#
- module: Fidelity.pm
state: working
added: TBD
changed: 2020-03-21
removed: ~
urls:
- https://fundresearch.fidelity.com/mutual-funds/fidelity-funds-daily-pricing-yields/download
apikey: false
notes: ~
testfile: fidelity.t
testcases:
- FGRIX
- FNMIX
- FASGX
- FEQTX
#
- module: FidelityFixed.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: FinanceCanada.pm
state: Not Working
added: Unknown
changed: ~
removed: 2020-10-10
urls:
apikey: false
notes: Removed in commit b22963e664a6455ef83620cf05f875bf4a65ea3a.
testfile: TBD
testcases:
#
- module: Finanzpartner.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Fool.pm
state: working
added: 2001-05-08
changed: 2019-06-21
removed:
urls:
- http://caps.fool.com/Ticker/{$symbol}.aspx
apikey: false
notes: ~
testfile: fool.t
testcases:
- MSFT
- AMZN
- AAPL
- GOOGL
- GOOG
- FB
- CSCO
- INTC
- CMCSA
- PEP
- BRK-A
- SEB
- NVR
- BKNG
#
- module: Fundata.pm
state: TBD
added: TBD
change: TBD
removed:
urls:
- http://idata.fundata.com/MutualFunds/FundSnapshot.aspx?IID={$symbol}
apikey: false
notes: ~
testfile: fundata.t
testcases:
- 301871
- 234263
#
- module: GoldMoney.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: HEX.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: HU.pm
state: failing
added: TBD
changed: 2019-06-22
removed: ~
urls:
- http://www.bamosz.hu/alapoldal?isin=
- http://www.bet.hu/topmenu/kereskedesi_adatok/product_search?isinquery=
methods:
- bamosz
- bse
- hu
apikey: false
notes: |
The URL http://www.bamosz.hu/alapoldal?isin= is for Mutual Funds.
The URL http://www.bet.hu/... is for Equities.
The equity URL is no longer working.
May need to try changing the equity URL to
https://www.bet.hu/oldalak/ceg_adatlap/$security/<symbol>
Changed failing Fund test case 2019-06-22.
testfile: hu.t
testcases:
- OTP
- HU0000705280
- HU0000702709
- ZOL
#
- module: IEXCloud.pm
state: working
added: 2019-06-16
changed: 2019-06-16
removed:
urls:
- https://cloud.iexapis.com/v1/stock/{$symbol}/quote?token={$token}
apikey: true
notes: |
Module retrieves data from IEX Trading (https://iextrading.com/).
For API Key - https://iextrading.com/developer/ and set the
environment variable IEXCLOUD_API_KEY.
testfile: iexcloud.t
testcases:
- MSFT
- AMZN
- AAPL
- GOOGL
- GOOG
- FB
- CSCO
- INTC
- CMCSA
- PEP
- BRK.A
- SEB
- NVR
- BKNG
- IBKR
#
- module: IndiaMutual.pm
state: working
added: TBD
changed: ~
removed: ~
urls: https://www.amfiindia.com/spages/NAVAll.txt
apikey: false
notes: ~
testfile: indiamutual.t
testcases:
- 102676
- 103131
- 101599
- INF194K01W88
- INF090I01FN7
- INF082J01127
#
- module: LeRevenu.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: ManInvestments.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: MorningstarCH.pm
state: working
added: 2019-03-02
changed: 2022-05-10
removed:
urls:
- https://www.morningstar.ch/ch/funds/SecuritySearchResults.aspx?search=
- https://www.morningstar.ch/ch/funds/snapshot/snapshot.aspx?id=
apikey: false
notes: Module to acquire data from https://www.morningstar.ch/.
testfile: morningstarCH.t
testcases:
- CH0012056260
- CH0014933193
- CH0002788567
- BOGUS
#
- module: MorningstarJP.pm
state: working
added: TBD
changed: 2023-04-08
removed: ~
urls: https://www.wealthadvisor.co.jp/FundData/DownloadStdYmd.do?fnc=
apikey: false
notes: ~
testfile: morningstarJP.t
testcases:
- 2009100101
- 2002013108
#
- module: MorningstarUK.pm
state: working
added: TBD
changed: 2023-05-20
removed: ~
urls:
apikey: false
notes: Renamed from MStaruk.pm 2023-05-20
testfile: morningstarUK.t
testcases:
#
- module: NSEIndia.pm
state: working
added: 2020-06-27
changed:
removed:
urls:
- https://archives.nseindia.com/content/historical/EQUITIES/${YYYY}/${MMM}/cm${DDMMMYYYY}bhav.csv.zip
methods:
- india
- nseindia
apikey: false
notes: |
Module to fetch equity quotes from https://www.nseindia.com/
testfile: nseindia.t
testcases:
- HDFC
- TCS
- INE009A01021
- INE062A01020
#
- module: NZX.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Oslobors.pm
state: working
added: 2020-02-06
changed: 2020-02-06
removed:
urls:
- https://www.oslobors.no/ob/servlets/components?type=table&source=feed.omff.FUNDS&view=REALTIME&columns=ITEM%2C+PRICECHANGEPCT%2C+PRICE%2C+DATE%2C+QUOTATIONCURRENCY&filter=ITEM_SECTOR%3D%3Ds
apikey: false
notes: |
Module to fetch mutual fund data from oslobors.no
testfile: oslobors.t
testcases:
- OD-HORIA.OSE
- DK-EUROP.OSE
- ST-VEKST.OSE
#
- module: Platinum.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: SEB.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Sinvestor.pm
state: working
added: 2022-10-19
changed: 2022-10-27
removed: ~
urls: https://web.s-investor.de/app/aktien.htm?INST_ID=0000057
apikey: false
notes: shares and funds from various sources
testfile: sinvestor.t
testcases:
- DE0008404005
- NL0011540547
- FR0000120628
- DE0009809566
- DE0008491002
#
- module: SIXfunds.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: SIXshares.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: StockHouseCanada.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: TMX.pm
state: working
added: TBD
changed: 2022-11-23
removed: ~
urls: https://app-money.tmx.com/graphql
apikey: false
notes: ~
testfile: tmx.t
testcases:
- STN
- BCE
- BMO
- HBI:US
#
- module: TNetuk.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Tradegate.pm
state: working
added: 2022-10-19
changed: 2022-10-27
removed: ~
urls: https://web.s-investor.de/app/aktien.htm?INST_ID=0000057
apikey: false
notes: share quotes from the Tradegate platform
testfile: tradegate.t
testcases:
- DE0008404005
- NL0011540547
- FR0000120628
- XS0937858271
- NL0000009165
#
- module: Tradeville.pm
state: failing
added: ~
changed: ~
removed: ~
urls: https://tradeville.ro/actiuni/actiuni-
apikey: false
notes: |
Issue #269 indicates the URL no longer works.
Suggested https://bvb.ro/FinancialInstruments/Details/FinancialInstrumentsDetails.aspx?s=
If we change to the bvb.ro URL, should the module be renamed to BVB.pm?
We probably should manually validate the test cases are still valid.
testfile: tradeville.t
testcases:
- TLV
- BRD
- SNP
#
- module: TSP.pm
state: working
added: 2005-03-02
changed: 2022-07-29
removed:
urls:
- https://www.tsp.gov/fund-performance/
apikey: false
notes:
testfile: tsp.t
testcases:
- C
- F
- G
- I
- S
- L2030
- L2035
- L2040
- L2045
- L2050
- L2055
- L2060
- L2065
- LINCOME
#
- module: Tdefunds.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Tdwaterhouse.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: Tiaacref.pm
state: working
added: 2000-05-14
changed: 2020-10-11
removed: ~
urls:
- https://www.tiaa.org/public/investment-performance
apikey: false
notes: ~
testfile: tiaacref.t
testcases:
- QCBMIX
- TEMLX
- TLFIX
- TSBPX
- W156#
- W323#
- W464#
- W719#
#
- module: TesouroDireto.pm
state: working
added: 2022-02-06
changed: ~
removed: ~
urls:
- https://www.tesourodireto.com.br/titulos/precos-e-taxas.htm
apikey: false
notes: ~
testfile: tesouro_direto.t
testcases:
- Tesouro Prefixado 2026
- Tesouro IPCA+ 2045
#
- module: TreasuryDirect.pm
state: working
added: 2022-07-20
changed:
removed:
urls:
- https://www.treasurydirect.gov/GA-FI/FedInvest/todaySecurityPriceDate.htm
apikey: false
notes: Retrieve Treasury bond quotes by CUSIP from treasurydirect.gov
testfile: treasurydirect.t
testcases:
- 912810QT8
- 912810QY7
#
- module: Troweprice.pm
state: working
added: TBD
changed: 2020-10-11
removed: ~
urls: https://www3.troweprice.com/fb2/ppfweb/downloadPrices.do
apikey: false
notes: data available elsewhere -- marked for deprecation
testfile: troweprice.t
testcases:
- PRFDX
- PRIDX
- TEUIX
- RPGEX
- GTFBX
#
- module: Trustnet.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: TwelveData.pm
state: working
added: 2023-05-26
changed:
removed:
urls:
- https://api.twelvedata.com/quote?symbol={$symbol}&apikey={$token}
apikey: true
notes: |
API Required. Register at https://twelvedata.com.
testfile: twelvedata.t
testcases:
- MSFT
- AMZN
- AAPL
- GOOGL
- META
- BRK.A
#
- module: USFedBonds.pm
state: failing
added: ~
changed: ~
removed: 2022-07-21
urls: https://www.treasurydirect.gov/indiv/tools/tools_savingsbondvalues_historical.htm
apikey: false
notes: URL returns an HTTP 404 status code. Could not find a viable replacement URL.
testfile: usfedbonds.t
testcases:
- E197001.200606
- E194112.200610
- E194105.200610
- S196712.202006
#
- module: Union.pm
state: working
added: TBD
changed: 2022-07-18
removed: ~
urls: https://legacy-apps.union-investment.de/handle?generate=true&action=doDownloadSearch&start_time=...
apikey: false
notes: symbol has changed from WKN to ISIN
testfile: union.t
testcases:
- DE0008491002
#
- module: UserAgent.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: VWD.pm
state: TBD
added: TBD
changed: ~
removed: ~
urls:
apikey: false
notes: ~
testfile: TBD
testcases:
#
- module: XETRA.pm
state: working
added: ~
changed: 2022-10-27
removed: ~
urls: https://web.s-investor.de/app/aktien.htm?INST_ID=0000057
apikey: false
notes: share quotes from the XETRA platform
testfile: xetra.t
testcases:
- DE0008404005
- NL0011540547
- FR0000120628
- XS0937858271
- NL0000009165
#
- module: YahooJSON.pm
state: working
added:
changed: 2023-05-25
removed:
urls:
- https://query2.finance.yahoo.com/v11/finance/quoteSummary/...?modules=price,summaryDetail,defaultKeyStatistics
apikey: false
notes: |
Module to get data from Yahoo's API
See issue https://github.com/finance-quote/finance-quote/issues/264
Dependability of Yahoo REST API has been
spotty.
testfile: yahoojson.t
testcases:
- SUZLON.BO
- ANDHRABANK.BO