-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput.log
More file actions
2901 lines (2901 loc) · 476 KB
/
Copy pathoutput.log
File metadata and controls
2901 lines (2901 loc) · 476 KB
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
API Token loaded successfully.
Downloaded Google Sheet to auction_data.csv
Saved cleaned data to 'cleaned_auction_data.csv'.
No row limit set. Processing all rows from the CSV file
Processing stock 5547.0 for period 2025-04-07 to 2026-02-23
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[5547.0] 2025-04-07-2026-02-23-TWSE_TPEX.csv 已包含結束日期 2026-02-23 的數據,跳過 API 請求
-----Processed row 1 of 294-----
Processing stock 6934.0 for period 2025-08-12 to 2026-02-20
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[6934.0] 2025-08-12-2026-02-20-TWSE_TPEX.csv
-----Processed row 2 of 294-----
Processing stock 7792.0 for period 2025-07-09 to 2026-02-17
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[7792.0] 2025-07-09-2026-02-17-TWSE_TPEX.csv
-----Processed row 3 of 294-----
Processing stock 6961.0 for period 2025-08-28 to 2026-02-11
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6961.0] 2025-08-28-2026-02-11-TWSE_TPEX.csv 已包含結束日期 2026-02-11 的數據,跳過 API 請求
-----Processed row 4 of 294-----
Processing stock 1623.0 for period 2025-09-10 to 2026-02-11
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[1623.0] 2025-09-10-2026-02-11-TWSE_TPEX.csv 已包含結束日期 2026-02-11 的數據,跳過 API 請求
-----Processed row 5 of 294-----
Processing stock 6722.0 for period 2025-05-08 to 2026-02-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6722.0] 2025-05-08-2026-02-05-TWSE_TPEX.csv 已包含結束日期 2026-02-05 的數據,跳過 API 請求
-----Processed row 6 of 294-----
Processing stock 7795.0 for period 2025-07-01 to 2026-02-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7795.0] 2025-07-01-2026-02-05-TWSE_TPEX.csv 已包含結束日期 2026-02-05 的數據,跳過 API 請求
-----Processed row 7 of 294-----
Processing stock 7715.0 for period 2024-07-11 to 2025-02-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7715.0] 2024-07-11-2025-02-04-TWSE_TPEX.csv 已包含結束日期 2025-02-04 的數據,跳過 API 請求
-----Processed row 8 of 294-----
Processing stock 6994.0 for period 2024-06-05 to 2025-02-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6994.0] 2024-06-05-2025-02-04-TWSE_TPEX.csv 已包含結束日期 2025-02-04 的數據,跳過 API 請求
-----Processed row 9 of 294-----
Processing stock 6931.0 for period 2024-09-05 to 2025-02-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6931.0] 2024-09-05-2025-02-04-TWSE_TPEX.csv 已包含結束日期 2025-02-04 的數據,跳過 API 請求
-----Processed row 10 of 294-----
Processing stock 7714.0 for period 2024-08-05 to 2025-02-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7714.0] 2024-08-05-2025-02-04-TWSE_TPEX.csv 已包含結束日期 2025-02-04 的數據,跳過 API 請求
-----Processed row 11 of 294-----
Processing stock 7732.0 for period 2024-08-29 to 2025-02-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7732.0] 2024-08-29-2025-02-03-TWSE_TPEX.csv 已包含結束日期 2025-02-03 的數據,跳過 API 請求
-----Processed row 12 of 294-----
Processing stock 7712.0 for period 2024-06-07 to 2025-01-15
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7712.0] 2024-06-07-2025-01-15-TWSE_TPEX.csv 已包含結束日期 2025-01-15 的數據,跳過 API 請求
-----Processed row 13 of 294-----
Processing stock 6982.0 for period 2024-07-02 to 2025-01-07
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6982.0] 2024-07-02-2025-01-07-TWSE_TPEX.csv 已包含結束日期 2025-01-07 的數據,跳過 API 請求
-----Processed row 14 of 294-----
Processing stock 7704.0 for period 2024-05-29 to 2025-01-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7704.0] 2024-05-29-2025-01-03-TWSE_TPEX.csv 已包含結束日期 2025-01-03 的數據,跳過 API 請求
-----Processed row 15 of 294-----
Processing stock 6885.0 for period 2024-07-08 to 2025-01-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6885.0] 2024-07-08-2025-01-03-TWSE_TPEX.csv 已包含結束日期 2025-01-03 的數據,跳過 API 請求
-----Processed row 16 of 294-----
Processing stock 6997.0 for period 2024-07-10 to 2025-01-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6997.0] 2024-07-10-2025-01-03-TWSE_TPEX.csv 已包含結束日期 2025-01-03 的數據,跳過 API 請求
-----Processed row 17 of 294-----
Processing stock 8045.0 for period 2024-05-31 to 2024-12-31
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[8045.0] 2024-05-31-2024-12-31-TWSE_TPEX.csv 已包含結束日期 2024-12-31 的數據,跳過 API 請求
-----Processed row 18 of 294-----
Processing stock 6996.0 for period 2024-06-05 to 2024-12-30
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6996.0] 2024-06-05-2024-12-30-TWSE_TPEX.csv 已包含結束日期 2024-12-30 的數據,跳過 API 請求
-----Processed row 19 of 294-----
Processing stock 7722.0 for period 2024-07-08 to 2024-12-25
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7722.0] 2024-07-08-2024-12-25-TWSE_TPEX.csv 已包含結束日期 2024-12-25 的數據,跳過 API 請求
-----Processed row 20 of 294-----
Processing stock 6720.0 for period 2024-07-08 to 2024-12-24
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6720.0] 2024-07-08-2024-12-24-TWSE_TPEX.csv 已包含結束日期 2024-12-24 的數據,跳過 API 請求
-----Processed row 21 of 294-----
Processing stock 7705.0 for period 2024-06-05 to 2024-12-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7705.0] 2024-06-05-2024-12-16-TWSE_TPEX.csv 已包含結束日期 2024-12-16 的數據,跳過 API 請求
-----Processed row 22 of 294-----
Processing stock 7708.0 for period 2024-06-07 to 2024-12-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7708.0] 2024-06-07-2024-12-05-TWSE_TPEX.csv 已包含結束日期 2024-12-05 的數據,跳過 API 請求
-----Processed row 23 of 294-----
Processing stock 7703.0 for period 2024-06-05 to 2024-12-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7703.0] 2024-06-05-2024-12-03-TWSE_TPEX.csv 已包含結束日期 2024-12-03 的數據,跳過 API 請求
-----Processed row 24 of 294-----
Processing stock 2646.0 for period 2024-06-07 to 2024-11-14
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[2646.0] 2024-06-07-2024-11-14-TWSE_TPEX.csv 已包含結束日期 2024-11-14 的數據,跳過 API 請求
-----Processed row 25 of 294-----
Processing stock 8272.0 for period 2024-04-09 to 2024-11-12
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[8272.0] 2024-04-09-2024-11-12-TWSE_TPEX.csv 已包含結束日期 2024-11-12 的數據,跳過 API 請求
-----Processed row 26 of 294-----
Processing stock 6919.0 for period 2024-04-10 to 2024-10-22
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6919.0] 2024-04-10-2024-10-22-TWSE_TPEX.csv 已包含結束日期 2024-10-22 的數據,跳過 API 請求
-----Processed row 27 of 294-----
Processing stock 6913.0 for period 2024-05-10 to 2024-10-21
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6913.0] 2024-05-10-2024-10-21-TWSE_TPEX.csv 已包含結束日期 2024-10-21 的數據,跳過 API 請求
-----Processed row 28 of 294-----
Processing stock 1294.0 for period 2024-03-19 to 2024-10-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[1294.0] 2024-03-19-2024-10-16-TWSE_TPEX.csv 已包含結束日期 2024-10-16 的數據,跳過 API 請求
-----Processed row 29 of 294-----
Processing stock 6967.0 for period 2024-04-10 to 2024-10-15
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6967.0] 2024-04-10-2024-10-15-TWSE_TPEX.csv 已包含結束日期 2024-10-15 的數據,跳過 API 請求
-----Processed row 30 of 294-----
Processing stock 6923.0 for period 2024-04-12 to 2024-10-15
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6923.0] 2024-04-12-2024-10-15-TWSE_TPEX.csv 已包含結束日期 2024-10-15 的數據,跳過 API 請求
-----Processed row 31 of 294-----
Processing stock 4772.0 for period 2024-03-19 to 2024-10-10
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[4772.0] 2024-03-19-2024-10-10-TWSE_TPEX.csv
-----Processed row 32 of 294-----
Processing stock 2751.0 for period 2024-03-08 to 2024-09-30
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[2751.0] 2024-03-08-2024-09-30-TWSE_TPEX.csv 已包含結束日期 2024-09-30 的數據,跳過 API 請求
-----Processed row 33 of 294-----
Processing stock 6739.0 for period 2024-03-07 to 2024-09-20
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6739.0] 2024-03-07-2024-09-20-TWSE_TPEX.csv 已包含結束日期 2024-09-20 的數據,跳過 API 請求
-----Processed row 34 of 294-----
Processing stock 6958.0 for period 2023-12-08 to 2024-09-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6958.0] 2023-12-08-2024-09-09-TWSE_TPEX.csv 已包含結束日期 2024-09-09 的數據,跳過 API 請求
-----Processed row 35 of 294-----
Processing stock 6968.0 for period 2024-03-08 to 2024-09-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6968.0] 2024-03-08-2024-09-03-TWSE_TPEX.csv 已包含結束日期 2024-09-03 的數據,跳過 API 請求
-----Processed row 36 of 294-----
Processing stock 6838.0 for period 2024-03-11 to 2024-09-02
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6838.0] 2024-03-11-2024-09-02-TWSE_TPEX.csv 已包含結束日期 2024-09-02 的數據,跳過 API 請求
-----Processed row 37 of 294-----
Processing stock 7584.0 for period 2024-02-19 to 2024-08-14
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[7584.0] 2024-02-19-2024-08-14-TWSE_TPEX.csv 已包含結束日期 2024-08-14 的數據,跳過 API 請求
-----Processed row 38 of 294-----
Processing stock 6637.0 for period 2023-11-01 to 2024-07-08
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6637.0] 2023-11-01-2024-07-08-TWSE_TPEX.csv 已包含結束日期 2024-07-08 的數據,跳過 API 請求
-----Processed row 39 of 294-----
Processing stock 6952.0 for period 2023-12-07 to 2024-07-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6952.0] 2023-12-07-2024-07-03-TWSE_TPEX.csv 已包含結束日期 2024-07-03 的數據,跳過 API 請求
-----Processed row 40 of 294-----
Processing stock 6903.0 for period 2023-11-29 to 2024-07-02
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6903.0] 2023-11-29-2024-07-02-TWSE_TPEX.csv 已包含結束日期 2024-07-02 的數據,跳過 API 請求
-----Processed row 41 of 294-----
Processing stock 6881.0 for period 2023-12-01 to 2024-06-10
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[6881.0] 2023-12-01-2024-06-10-TWSE_TPEX.csv
-----Processed row 42 of 294-----
Processing stock 6928.0 for period 2023-11-27 to 2024-06-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6928.0] 2023-11-27-2024-06-05-TWSE_TPEX.csv 已包含結束日期 2024-06-05 的數據,跳過 API 請求
-----Processed row 43 of 294-----
Processing stock 1563.0 for period 2023-11-28 to 2024-05-31
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[1563.0] 2023-11-28-2024-05-31-TWSE_TPEX.csv 已包含結束日期 2024-05-31 的數據,跳過 API 請求
-----Processed row 44 of 294-----
Processing stock 6953.0 for period 2023-12-08 to 2024-05-31
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6953.0] 2023-12-08-2024-05-31-TWSE_TPEX.csv 已包含結束日期 2024-05-31 的數據,跳過 API 請求
-----Processed row 45 of 294-----
Processing stock 4949.0 for period 2023-10-31 to 2024-05-29
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4949.0] 2023-10-31-2024-05-29-TWSE_TPEX.csv 已包含結束日期 2024-05-29 的數據,跳過 API 請求
-----Processed row 46 of 294-----
Processing stock 6914.0 for period 2023-08-28 to 2024-05-23
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6914.0] 2023-08-28-2024-05-23-TWSE_TPEX.csv 已包含結束日期 2024-05-23 的數據,跳過 API 請求
-----Processed row 47 of 294-----
Processing stock 6899.0 for period 2023-08-30 to 2024-04-26
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6899.0] 2023-08-30-2024-04-26-TWSE_TPEX.csv 已包含結束日期 2024-04-26 的數據,跳過 API 請求
-----Processed row 48 of 294-----
Processing stock 6929.0 for period 2023-08-25 to 2024-04-17
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6929.0] 2023-08-25-2024-04-17-TWSE_TPEX.csv 已包含結束日期 2024-04-17 的數據,跳過 API 請求
-----Processed row 49 of 294-----
Processing stock 6875.0 for period 2023-09-06 to 2024-04-15
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6875.0] 2023-09-06-2024-04-15-TWSE_TPEX.csv 已包含結束日期 2024-04-15 的數據,跳過 API 請求
-----Processed row 50 of 294-----
Processing stock 3168.0 for period 2023-10-02 to 2024-04-15
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[3168.0] 2023-10-02-2024-04-15-TWSE_TPEX.csv 已包含結束日期 2024-04-15 的數據,跳過 API 請求
-----Processed row 51 of 294-----
Processing stock 2941.0 for period 2023-09-22 to 2024-04-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[2941.0] 2023-09-22-2024-04-09-TWSE_TPEX.csv 已包含結束日期 2024-04-09 的數據,跳過 API 請求
-----Processed row 52 of 294-----
Processing stock 5548.0 for period 2023-09-22 to 2024-04-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[5548.0] 2023-09-22-2024-04-05-TWSE_TPEX.csv
-----Processed row 53 of 294-----
Processing stock 4771.0 for period 2023-09-29 to 2024-04-05
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[4771.0] 2023-09-29-2024-04-05-TWSE_TPEX.csv
-----Processed row 54 of 294-----
Processing stock 6844.0 for period 2023-07-10 to 2024-03-28
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6844.0] 2023-07-10-2024-03-28-TWSE_TPEX.csv 已包含結束日期 2024-03-28 的數據,跳過 API 請求
-----Processed row 55 of 294-----
Processing stock 6692.0 for period 2023-05-23 to 2024-02-22
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6692.0] 2023-05-23-2024-02-22-TWSE_TPEX.csv 已包含結束日期 2024-02-22 的數據,跳過 API 請求
-----Processed row 56 of 294-----
Processing stock 4588.0 for period 2023-09-08 to 2024-02-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4588.0] 2023-09-08-2024-02-16-TWSE_TPEX.csv 已包含結束日期 2024-02-16 的數據,跳過 API 請求
-----Processed row 57 of 294-----
Processing stock 6906.0 for period 2023-07-11 to 2024-02-02
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6906.0] 2023-07-11-2024-02-02-TWSE_TPEX.csv 已包含結束日期 2024-02-02 的數據,跳過 API 請求
-----Processed row 58 of 294-----
Processing stock 2949.0 for period 2023-06-23 to 2024-01-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[2949.0] 2023-06-23-2024-01-04-TWSE_TPEX.csv 已包含結束日期 2024-01-04 的數據,跳過 API 請求
-----Processed row 59 of 294-----
Processing stock 6937.0 for period 2023-07-10 to 2024-01-01
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[6937.0] 2023-07-10-2024-01-01-TWSE_TPEX.csv
-----Processed row 60 of 294-----
Processing stock 2948.0 for period 2023-07-11 to 2024-01-01
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[2948.0] 2023-07-11-2024-01-01-TWSE_TPEX.csv
-----Processed row 61 of 294-----
Processing stock 6904.0 for period 2023-06-07 to 2023-12-25
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6904.0] 2023-06-07-2023-12-25-TWSE_TPEX.csv 已包含結束日期 2023-12-25 的數據,跳過 API 請求
-----Processed row 62 of 294-----
Processing stock 6742.0 for period 2023-04-10 to 2023-12-25
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6742.0] 2023-04-10-2023-12-25-TWSE_TPEX.csv 已包含結束日期 2023-12-25 的數據,跳過 API 請求
-----Processed row 63 of 294-----
Processing stock 6916.0 for period 2023-07-11 to 2023-12-25
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6916.0] 2023-07-11-2023-12-25-TWSE_TPEX.csv 已包含結束日期 2023-12-25 的數據,跳過 API 請求
-----Processed row 64 of 294-----
Processing stock 6894.0 for period 2023-05-16 to 2023-12-19
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6894.0] 2023-05-16-2023-12-19-TWSE_TPEX.csv 已包含結束日期 2023-12-19 的數據,跳過 API 請求
-----Processed row 65 of 294-----
Processing stock 5292.0 for period 2023-06-12 to 2023-12-11
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[5292.0] 2023-06-12-2023-12-11-TWSE_TPEX.csv 已包含結束日期 2023-12-11 的數據,跳過 API 請求
-----Processed row 66 of 294-----
Processing stock 6922.0 for period 2023-04-06 to 2023-11-29
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6922.0] 2023-04-06-2023-11-29-TWSE_TPEX.csv 已包含結束日期 2023-11-29 的數據,跳過 API 請求
-----Processed row 67 of 294-----
Processing stock 6805.0 for period 2023-03-07 to 2023-11-29
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6805.0] 2023-03-07-2023-11-29-TWSE_TPEX.csv 已包含結束日期 2023-11-29 的數據,跳過 API 請求
-----Processed row 68 of 294-----
Processing stock 6658.0 for period 2023-04-06 to 2023-11-22
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6658.0] 2023-04-06-2023-11-22-TWSE_TPEX.csv 已包含結束日期 2023-11-22 的數據,跳過 API 請求
-----Processed row 69 of 294-----
Processing stock 6856.0 for period 2023-05-11 to 2023-11-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6856.0] 2023-05-11-2023-11-16-TWSE_TPEX.csv 已包含結束日期 2023-11-16 的數據,跳過 API 請求
-----Processed row 70 of 294-----
Processing stock 6526.0 for period 2022-12-07 to 2023-11-08
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6526.0] 2022-12-07-2023-11-08-TWSE_TPEX.csv 已包含結束日期 2023-11-08 的數據,跳過 API 請求
-----Processed row 71 of 294-----
Processing stock 6901.0 for period 2023-03-07 to 2023-10-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[6901.0] 2023-03-07-2023-10-09-TWSE_TPEX.csv
-----Processed row 72 of 294-----
Processing stock 6870.0 for period 2023-04-07 to 2023-10-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6870.0] 2023-04-07-2023-10-04-TWSE_TPEX.csv 已包含結束日期 2023-10-04 的數據,跳過 API 請求
-----Processed row 73 of 294-----
Processing stock 6895.0 for period 2023-03-10 to 2023-09-11
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6895.0] 2023-03-10-2023-09-11-TWSE_TPEX.csv 已包含結束日期 2023-09-11 的數據,跳過 API 請求
-----Processed row 74 of 294-----
Processing stock 2073.0 for period 2022-10-11 to 2023-07-11
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[2073.0] 2022-10-11-2023-07-11-TWSE_TPEX.csv 已包含結束日期 2023-07-11 的數據,跳過 API 請求
-----Processed row 75 of 294-----
Processing stock 6877.0 for period 2022-10-06 to 2023-07-06
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6877.0] 2022-10-06-2023-07-06-TWSE_TPEX.csv 已包含結束日期 2023-07-06 的數據,跳過 API 請求
-----Processed row 76 of 294-----
Processing stock 6657.0 for period 2022-11-30 to 2023-06-30
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6657.0] 2022-11-30-2023-06-30-TWSE_TPEX.csv 已包含結束日期 2023-06-30 的數據,跳過 API 請求
-----Processed row 77 of 294-----
Processing stock 6821.0 for period 2022-10-28 to 2023-06-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6821.0] 2022-10-28-2023-06-09-TWSE_TPEX.csv 已包含結束日期 2023-06-09 的數據,跳過 API 請求
-----Processed row 78 of 294-----
Processing stock 6584.0 for period 2022-09-12 to 2023-06-07
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6584.0] 2022-09-12-2023-06-07-TWSE_TPEX.csv 已包含結束日期 2023-06-07 的數據,跳過 API 請求
-----Processed row 79 of 294-----
Processing stock 6846.0 for period 2022-10-06 to 2023-06-02
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6846.0] 2022-10-06-2023-06-02-TWSE_TPEX.csv 已包含結束日期 2023-06-02 的數據,跳過 API 請求
-----Processed row 80 of 294-----
Processing stock 6861.0 for period 2022-07-05 to 2023-04-14
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6861.0] 2022-07-05-2023-04-14-TWSE_TPEX.csv 已包含結束日期 2023-04-14 的數據,跳過 API 請求
-----Processed row 81 of 294-----
Processing stock 6840.0 for period 2022-08-11 to 2023-04-13
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6840.0] 2022-08-11-2023-04-13-TWSE_TPEX.csv 已包含結束日期 2023-04-13 的數據,跳過 API 請求
-----Processed row 82 of 294-----
Processing stock 6606.0 for period 2022-09-12 to 2023-04-13
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6606.0] 2022-09-12-2023-04-13-TWSE_TPEX.csv 已包含結束日期 2023-04-13 的數據,跳過 API 請求
-----Processed row 83 of 294-----
Processing stock 2645.0 for period 2022-09-01 to 2023-04-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[2645.0] 2022-09-01-2023-04-03-TWSE_TPEX.csv
-----Processed row 84 of 294-----
Processing stock 6753.0 for period 2022-09-07 to 2023-03-30
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6753.0] 2022-09-07-2023-03-30-TWSE_TPEX.csv 已包含結束日期 2023-03-30 的數據,跳過 API 請求
-----Processed row 85 of 294-----
Processing stock 6865.0 for period 2022-08-17 to 2023-01-31
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6865.0] 2022-08-17-2023-01-31-TWSE_TPEX.csv 已包含結束日期 2023-01-31 的數據,跳過 API 請求
-----Processed row 86 of 294-----
Processing stock 6708.0 for period 2022-06-30 to 2023-01-18
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
Data successfully written to TWSE_TPEX/[6708.0] 2022-06-30-2023-01-18-TWSE_TPEX.csv
-----Processed row 87 of 294-----
Processing stock 8227.0 for period 2022-07-01 to 2023-01-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[8227.0] 2022-07-01-2023-01-09-TWSE_TPEX.csv 已包含結束日期 2023-01-09 的數據,跳過 API 請求
-----Processed row 88 of 294-----
Processing stock 6517.0 for period 2022-07-01 to 2023-01-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6517.0] 2022-07-01-2023-01-04-TWSE_TPEX.csv 已包含結束日期 2023-01-04 的數據,跳過 API 請求
-----Processed row 89 of 294-----
Processing stock 3447.0 for period 2022-07-05 to 2023-01-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[3447.0] 2022-07-05-2023-01-04-TWSE_TPEX.csv 已包含結束日期 2023-01-04 的數據,跳過 API 請求
-----Processed row 90 of 294-----
Processing stock 6874.0 for period 2022-07-11 to 2023-01-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6874.0] 2022-07-11-2023-01-03-TWSE_TPEX.csv 已包含結束日期 2023-01-03 的數據,跳過 API 請求
-----Processed row 91 of 294-----
Processing stock 6859.0 for period 2022-06-23 to 2022-12-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6859.0] 2022-06-23-2022-12-16-TWSE_TPEX.csv 已包含結束日期 2022-12-16 的數據,跳過 API 請求
-----Processed row 92 of 294-----
Processing stock 6782.0 for period 2022-07-01 to 2022-12-16
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6782.0] 2022-07-01-2022-12-16-TWSE_TPEX.csv 已包含結束日期 2022-12-16 的數據,跳過 API 請求
-----Processed row 93 of 294-----
Processing stock 6843.0 for period 2022-04-25 to 2022-12-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6843.0] 2022-04-25-2022-12-09-TWSE_TPEX.csv 已包含結束日期 2022-12-09 的數據,跳過 API 請求
-----Processed row 94 of 294-----
Processing stock 6791.0 for period 2022-06-10 to 2022-12-02
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6791.0] 2022-06-10-2022-12-02-TWSE_TPEX.csv 已包含結束日期 2022-12-02 的數據,跳過 API 請求
-----Processed row 95 of 294-----
Processing stock 6835.0 for period 2022-06-10 to 2022-11-30
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6835.0] 2022-06-10-2022-11-30-TWSE_TPEX.csv 已包含結束日期 2022-11-30 的數據,跳過 API 請求
-----Processed row 96 of 294-----
Processing stock 6695.0 for period 2022-06-10 to 2022-11-24
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6695.0] 2022-06-10-2022-11-24-TWSE_TPEX.csv 已包含結束日期 2022-11-24 的數據,跳過 API 請求
-----Processed row 97 of 294-----
Processing stock 4951.0 for period 2022-05-11 to 2022-11-23
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4951.0] 2022-05-11-2022-11-23-TWSE_TPEX.csv 已包含結束日期 2022-11-23 的數據,跳過 API 請求
-----Processed row 98 of 294-----
Processing stock 6855.0 for period 2022-04-08 to 2022-10-26
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6855.0] 2022-04-08-2022-10-26-TWSE_TPEX.csv 已包含結束日期 2022-10-26 的數據,跳過 API 請求
-----Processed row 99 of 294-----
Processing stock 4584.0 for period 2022-04-08 to 2022-10-25
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4584.0] 2022-04-08-2022-10-25-TWSE_TPEX.csv 已包含結束日期 2022-10-25 的數據,跳過 API 請求
-----Processed row 100 of 294-----
Processing stock 6689.0 for period 2022-04-14 to 2022-10-03
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6689.0] 2022-04-14-2022-10-03-TWSE_TPEX.csv 已包含結束日期 2022-10-03 的數據,跳過 API 請求
-----Processed row 101 of 294-----
Processing stock 3430.0 for period 2022-04-11 to 2022-09-28
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[3430.0] 2022-04-11-2022-09-28-TWSE_TPEX.csv 已包含結束日期 2022-09-28 的數據,跳過 API 請求
-----Processed row 102 of 294-----
Processing stock 6834.0 for period 2022-03-18 to 2022-09-21
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6834.0] 2022-03-18-2022-09-21-TWSE_TPEX.csv 已包含結束日期 2022-09-21 的數據,跳過 API 請求
-----Processed row 103 of 294-----
Processing stock 6830.0 for period 2022-03-30 to 2022-09-20
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6830.0] 2022-03-30-2022-09-20-TWSE_TPEX.csv 已包含結束日期 2022-09-20 的數據,跳過 API 請求
-----Processed row 104 of 294-----
Processing stock 6811.0 for period 2022-03-11 to 2022-08-29
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6811.0] 2022-03-11-2022-08-29-TWSE_TPEX.csv 已包含結束日期 2022-08-29 的數據,跳過 API 請求
-----Processed row 105 of 294-----
Processing stock 6823.0 for period 2021-12-07 to 2022-07-20
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6823.0] 2021-12-07-2022-07-20-TWSE_TPEX.csv 已包含結束日期 2022-07-20 的數據,跳過 API 請求
-----Processed row 106 of 294-----
Processing stock 6789.0 for period 2021-12-09 to 2022-07-20
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6789.0] 2021-12-09-2022-07-20-TWSE_TPEX.csv 已包含結束日期 2022-07-20 的數據,跳過 API 請求
-----Processed row 107 of 294-----
Processing stock 4577.0 for period 2021-11-22 to 2022-07-04
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4577.0] 2021-11-22-2022-07-04-TWSE_TPEX.csv 已包含結束日期 2022-07-04 的數據,跳過 API 請求
-----Processed row 108 of 294-----
Processing stock 6796.0 for period 2021-11-18 to 2022-06-21
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6796.0] 2021-11-18-2022-06-21-TWSE_TPEX.csv 已包含結束日期 2022-06-21 的數據,跳過 API 請求
-----Processed row 109 of 294-----
Processing stock 6546.0 for period 2021-12-10 to 2022-06-13
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6546.0] 2021-12-10-2022-06-13-TWSE_TPEX.csv 已包含結束日期 2022-06-13 的數據,跳過 API 請求
-----Processed row 110 of 294-----
Processing stock 5228.0 for period 2021-11-26 to 2022-06-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[5228.0] 2021-11-26-2022-06-09-TWSE_TPEX.csv 已包含結束日期 2022-06-09 的數據,跳過 API 請求
-----Processed row 111 of 294-----
Processing stock 6585.0 for period 2021-11-05 to 2022-06-09
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6585.0] 2021-11-05-2022-06-09-TWSE_TPEX.csv 已包含結束日期 2022-06-09 的數據,跳過 API 請求
-----Processed row 112 of 294-----
Processing stock 6799.0 for period 2021-11-02 to 2022-06-01
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6799.0] 2021-11-02-2022-06-01-TWSE_TPEX.csv 已包含結束日期 2022-06-01 的數據,跳過 API 請求
-----Processed row 113 of 294-----
Processing stock 4583.0 for period 2021-09-07 to 2022-05-27
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[4583.0] 2021-09-07-2022-05-27-TWSE_TPEX.csv 已包含結束日期 2022-05-27 的數據,跳過 API 請求
-----Processed row 114 of 294-----
Processing stock 6721.0 for period 2021-09-23 to 2022-05-19
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
No data returned for the given parameters on financialstatements.
文件 TWSE_TPEX/[6721.0] 2021-09-23-2022-05-19-TWSE_TPEX.csv 已包含結束日期 2022-05-19 的數據,跳過 API 請求
-----Processed row 115 of 294-----
Processing stock 6735.0 for period 2021-11-04 to 2022-05-19
No data returned for the given parameters.
No data returned for the given parameters on dividend.
No data returned for the given parameters on PER_PBR.
No data returned for the given parameters on company_profile.
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=6735.0&start_date=2021-11-04&end_date=2022-05-19&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[6735.0] 2021-11-04-2022-05-19-TWSE_TPEX.csv 已包含結束日期 2022-05-19 的數據,跳過 API 請求
-----Processed row 116 of 294-----
Processing stock 4768.0 for period 2021-09-09 to 2022-05-03
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=4768.0&start_date=2021-09-09&end_date=2022-05-03&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=4768.0&start_date=2021-09-09&end_date=2022-05-03&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=4768.0&start_date=2021-09-09&end_date=2022-05-03&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=4768.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=4768.0&start_date=2021-09-09&end_date=2022-05-03&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[4768.0] 2021-09-09-2022-05-03-TWSE_TPEX.csv 已包含結束日期 2022-05-03 的數據,跳過 API 請求
-----Processed row 117 of 294-----
Processing stock 6804.0 for period 2021-09-20 to 2022-04-20
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=6804.0&start_date=2021-09-20&end_date=2022-04-20&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=6804.0&start_date=2021-09-20&end_date=2022-04-20&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=6804.0&start_date=2021-09-20&end_date=2022-04-20&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=6804.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=6804.0&start_date=2021-09-20&end_date=2022-04-20&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[6804.0] 2021-09-20-2022-04-20-TWSE_TPEX.csv 已包含結束日期 2022-04-20 的數據,跳過 API 請求
-----Processed row 118 of 294-----
Processing stock 3349.0 for period 2021-09-23 to 2022-04-12
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=3349.0&start_date=2021-09-23&end_date=2022-04-12&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=3349.0&start_date=2021-09-23&end_date=2022-04-12&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=3349.0&start_date=2021-09-23&end_date=2022-04-12&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=3349.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=3349.0&start_date=2021-09-23&end_date=2022-04-12&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[3349.0] 2021-09-23-2022-04-12-TWSE_TPEX.csv 已包含結束日期 2022-04-12 的數據,跳過 API 請求
-----Processed row 119 of 294-----
Processing stock 4558.0 for period 2021-10-08 to 2022-04-06
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=4558.0&start_date=2021-10-08&end_date=2022-04-06&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=4558.0&start_date=2021-10-08&end_date=2022-04-06&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=4558.0&start_date=2021-10-08&end_date=2022-04-06&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=4558.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=4558.0&start_date=2021-10-08&end_date=2022-04-06&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[4558.0] 2021-10-08-2022-04-06-TWSE_TPEX.csv 已包含結束日期 2022-04-06 的數據,跳過 API 請求
-----Processed row 120 of 294-----
Processing stock 6763.0 for period 2021-10-07 to 2022-04-04
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=6763.0&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=6763.0&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=6763.0&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=6763.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=6763.0&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error for TWSE: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=TAIEX&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error for TPEX: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=TPEx&start_date=2021-10-07&end_date=2022-04-04&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
No data retrieved for either TWSE or TPEX.
-----Processed row 121 of 294-----
Processing stock 4923.0 for period 2021-09-10 to 2022-04-01
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=4923.0&start_date=2021-09-10&end_date=2022-04-01&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=4923.0&start_date=2021-09-10&end_date=2022-04-01&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=4923.0&start_date=2021-09-10&end_date=2022-04-01&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=4923.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=4923.0&start_date=2021-09-10&end_date=2022-04-01&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[4923.0] 2021-09-10-2022-04-01-TWSE_TPEX.csv 已包含結束日期 2022-04-01 的數據,跳過 API 請求
-----Processed row 122 of 294-----
Processing stock 8438.0 for period 2021-10-11 to 2022-03-31
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=8438.0&start_date=2021-10-11&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=8438.0&start_date=2021-10-11&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=8438.0&start_date=2021-10-11&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=8438.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=8438.0&start_date=2021-10-11&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[8438.0] 2021-10-11-2022-03-31-TWSE_TPEX.csv 已包含結束日期 2022-03-31 的數據,跳過 API 請求
-----Processed row 123 of 294-----
Processing stock 6829.0 for period 2021-09-20 to 2022-03-31
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=6829.0&start_date=2021-09-20&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockDividend&data_id=6829.0&start_date=2021-09-20&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPER&data_id=6829.0&start_date=2021-09-20&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockInfo&data_id=6829.0&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockFinancialStatements&data_id=6829.0&start_date=2021-09-20&end_date=2022-03-31&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE
文件 TWSE_TPEX/[6829.0] 2021-09-20-2022-03-31-TWSE_TPEX.csv 已包含結束日期 2022-03-31 的數據,跳過 API 請求
-----Processed row 124 of 294-----
Processing stock 6693.0 for period 2021-09-09 to 2022-03-21
HTTP Request error: 402 Client Error: Payment Required for url: https://api.finmindtrade.com/api/v4/data?dataset=TaiwanStockPrice&data_id=6693.0&start_date=2021-09-09&end_date=2022-03-21&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRlIjoiMjAyNS0wMS0wNCAxNDoyMzowOSIsInVzZXJfaWQiOiJ3ZW5jaGllaGxlZS5pbnZlc3RtZW50IiwiaXAiOiIxLjE2MS4yMjEuMTAzIn0.RJZjD5pOciBlHkk0HlYyQzId_t4-t7h4JdvqMIML2FE