zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
package com.gear.swx.task;
 
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONArray;
import com.alibaba.fastjson2.JSONObject;
import com.gear.common.core.redis.RedisCache;
import com.gear.framework.websocket.WebSocketUsers;
import com.gear.common.constant.SwxConstons;
import com.gear.swx.vo.SyncCurrentValueFromLdVo;
import com.gear.swx.vo.SyncKValueFromLdVo;
import lombok.extern.slf4j.Slf4j;
import org.apache.logging.log4j.util.Strings;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
 
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.net.HttpURLConnection;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.*;
 
@Component("SyncFinanceTask")
@Slf4j
public class SyncFinanceTask {
 
    private static final Logger lg = LoggerFactory.getLogger("taskFile");
 
    @Autowired
    private RedisCache redisCache;
    private String currentChannel = "139.196.211.109";
 
    private String currentFuturesChannel = "139.196.211.109";
    private String channelA = "139.196.211.109";
 
    private String channelB = "47.112.169.122";
 
    private  String passwordMd5 = "8a1576001bea15a3e5906ba3af004392";
 
    private String userName = "673468708";
 
    /**
     * 同步即时信息
     */
    public void syncCurrentInfo(){
        log.debug("----------------------------------同步即时信息");
        //获取渠道
        if(currentChannel.equals(channelB)){
            currentChannel = channelA;
        }else{
            currentChannel = channelB;
        }
        List<SyncCurrentValueFromLdVo> allPrice = new ArrayList<>();
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            List<SyncCurrentValueFromLdVo> result = getCurrentValueFromLdVo(syncForex,"exchange_curr.action","");
            System.out.println("------------------");
            System.out.println(result);
            allPrice.addAll(result);
        }
        System.out.println("当前信息:"+allPrice);
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            List<SyncCurrentValueFromLdVo> result = getCurrentValueFromMfVo(syncCrypto);
            allPrice.addAll(result);
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            List<SyncCurrentValueFromLdVo> result = getCurrentValueFromLdVo(syncStocks,"us_curr.action","&jys=NA");
            allPrice.addAll(result);
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            List<SyncCurrentValueFromLdVo> result = getCurrentValueFromLdVo(syncFutures,"fOption_curr.action","");
            allPrice.addAll(result);
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            List<SyncCurrentValueFromLdVo> result = getCurrentValueFromLdVo(syncMetal,"ldMetal_curr.action","");
            allPrice.addAll(result);
        }
        //更新每秒数据集合
        if(!CollectionUtils.isEmpty(allPrice)){
            redisCache.deleteObject(SwxConstons.REDIS_CACHE_CURRENT_MARKET_PRICE);
            redisCache.setCacheList(SwxConstons.REDIS_CACHE_CURRENT_MARKET_PRICE,allPrice);
            //将最终结果通过socket广播
            JSONArray jsonArray = new JSONArray(allPrice);
            String msg = jsonArray.toString();
            WebSocketUsers.sendMessageToUsersByText(msg);
        }
    }
 
    /**
     * 每分钟更新k线
     */
    public void syncKvalueby1(){
        log.debug("----------------------------------每分钟更新k线");
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
           String[] codes = syncForex.split(",");
           if(codes.length > 1){
               getKValueFromLdMany(syncForex,"exchange_pluralK.action","1","",1);
           }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","1","",1);
           }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","1","&jys=NA",1);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","1","&jys=NA",1);
            }
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","1","",1);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","1","",1);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","1","",1);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","1","",1);
            }
        }
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),1,1);
        }
    }
 
    /**
     * 每5分钟更新k线
     */
    public void syncKvalueby5(){
        log.debug("----------------------------------每5分钟更新k线");
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","5","",1);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","5","",1);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","5","&jys=NA",1);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","5","&jys=NA",1);
            }
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","5","",1);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","5","",1);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","5","",1);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","5","",1);
            }
        }
        //查询数字货币实时信息
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),1,5);
        }
    }
 
    /**
     * 每15分钟更新k线
     */
    public void syncKvalueby15(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","15","",1);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","15","",1);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","15","&jys=NA",1);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","15","&jys=NA",1);
            }
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","15","",1);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","15","",1);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","15","",1);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","15","",1);
            }
        }
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),1,15);
        }
    }
 
 
 
    /**
     * 每30分钟更新k线
     */
    public void syncKvalueby30(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","30","",1);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","30","",1);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","30","&jys=NA",1);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","30","&jys=NA",1);
            }
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","30","",1);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","30","",1);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","30","",1);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","30","",1);
            }
        }
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),1,30);
        }
    }
 
    /**
     * 每60分钟更新k线
     */
    public void syncKvalueby60(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","60","",1);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","60","",1);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","60","&jys=NA",1);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","60","&jys=NA",1);
            }
        }
        //查询贵金属实时信息
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","60","",1);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","60","",1);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","60","",1);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","60","",1);
            }
        }
        //查询数字货币实时信息
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),1,60);
        }
    }
 
 
    /**
     * 每天更新k线
     */
    public void syncKvaluebyD(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","d","",2);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","d","",2);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","d","&jys=NA",2);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","d","&jys=NA",2);
            }
        }
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","d","",2);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","d","",2);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","d","",2);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","d","",2);
            }
        }
        //查询数字货币实时信息
        String syncCrypto = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_CRYPTO);
        if(!Strings.isEmpty(syncCrypto)){
            getKValueFromMFVO(syncCrypto,redisCache.getCacheObject("syncCryptoKCode"),2,1);
        }
    }
 
    /**
     * 每周更新k线
     */
    public void syncKvaluebyW(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","w","",2);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","w","",2);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","w","&jys=NA",2);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","w","&jys=NA",2);
            }
        }
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","w","",2);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","w","",2);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","w","",2);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","w","",2);
            }
        }
        //查询数字货币实时信息
 
    }
    //每月更新k线
    public void syncKvaluebyM(){
        //获取当前需要查询的对象集合
        //获取渠道
        //查询外汇实时信息
        String syncForex = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FOREX);
        if(!Strings.isEmpty(syncForex)){
            String[] codes = syncForex.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncForex,"exchange_pluralK.action","m","",2);
            }else{
                getKValueFromLdOne(syncForex,"exchange_k.action","m","",2);
            }
        }
        //查询股票实时信息
        String syncStocks = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_STOCKS);
        if(!Strings.isEmpty(syncStocks)){
            String[] codes = syncStocks.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncStocks,"us_pluralK.action","m","&jys=NA",2);
            }else{
                getKValueFromLdOne(syncStocks,"us_k.action","m","&jys=NA",2);
            }
        }
        String syncMetal = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_METAL);
        if(!Strings.isEmpty(syncMetal)){
            String[] codes = syncMetal.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncMetal,"ldMetal_pluralK.action","m","",2);
            }else{
                getKValueFromLdOne(syncMetal,"ldMetal_k.action","m","",2);
            }
        }
        //查询期货实时信息
        String syncFutures = redisCache.getCacheObject(SwxConstons.REDIS_CACHE_SYNC_TYPE_FUTURES);
        if(!Strings.isEmpty(syncFutures)){
            String[] codes = syncFutures.split(",");
            if(codes.length > 1){
                getKValueFromLdMany(syncFutures,"fOption_pluralK.action","m","",2);
            }else{
                getKValueFromLdOne(syncFutures,"fOption_k.action","m","",2);
            }
        }
 
    }
 
    //获取实时数据
    private  List<SyncCurrentValueFromLdVo> getCurrentValueFromLdVo(String code,String method,String append){
        List<SyncCurrentValueFromLdVo> result = new ArrayList<>();
        try {
            String urlStr = "http://"+currentChannel+"/"+method+"?username=673468708&password=8a1576001bea15a3e5906ba3af004392&id="+code+"&column=mc,zf,price,zdf"+append;
            log.info("获取实时数据,类型为:{},代码为:{},请求地址:{}",method,code,urlStr);
            // 创建 URL 对象
            URL url = new URL(urlStr);
 
            // 创建 HTTP 连接
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");
            // 获取输入流
            BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
            String firstLine = reader.readLine();
            log.info("返回列:{}",firstLine);
            String[] clomns = firstLine.split(",");
            Integer codePostion = getPostion(clomns,"代码");
            Integer namePosition =  getPostion(clomns,"名称");
            Integer pricePosition = getPostion(clomns,"价格");
            Integer zdfPosition = getPostion(clomns,"涨跌幅");
 
            // 读取 CSV 数据
            String line;
            while ((line = reader.readLine()) != null) { // 打印每一行数据
                System.out.println("当前数据:"+line);
                String[] dataArray = line.split(",");
                SyncCurrentValueFromLdVo vo = new SyncCurrentValueFromLdVo();
                vo.setCode(dataArray[codePostion]);
                vo.setPrice(isDecimal(dataArray[pricePosition]) ? new BigDecimal(dataArray[pricePosition]) : BigDecimal.ZERO);
                vo.setZdf(isDecimal(dataArray[zdfPosition]) ? new BigDecimal(dataArray[zdfPosition]) : BigDecimal.ZERO);
                vo.setName(dataArray[namePosition]);
                //更新对应个产品每秒数据
                redisCache.setCacheObject(vo.getCode()+"CurrPrice",vo.getPrice());
                redisCache.setCacheObject(vo.getCode()+"CurrZdf",vo.getZdf());
                //更新对应产品的缓存100条数据
                List<BigDecimal> list = redisCache.getCacheList(vo.getCode()+"Hundred");
                if(list != null && list.size() > 0){
                    //如果本次获取的价格和上次一样,则不保存
                    BigDecimal lastPrice = new BigDecimal(list.get(list.size()-1)+"");
                    if (lastPrice.compareTo(vo.getPrice()) != 0){
                        if(list.size() >= 100){
                            list.remove(0);
                        }
                        list.add(vo.getPrice());
                        redisCache.deleteObject(vo.getCode()+"Hundred");
                        redisCache.setCacheList(vo.getCode()+"Hundred",list);
                    }
                }
                result.add(vo);
            }
            // 关闭连接
            reader.close();
            connection.disconnect();
            return result;
        } catch (Exception e) {
            System.out.println("执行获取单价发生异常了发生异常了");
            System.out.println(e.toString());
        }
        return result;
    }
 
    private void getKValueFromLdMany(String code,String method,String dateNum,String append,Integer dateType){
        try {
            SimpleDateFormat simpleDateFormat;
            if (dateType == 1){
                simpleDateFormat = new SimpleDateFormat("yyyyMMddHHmm");
            }else{
                simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
            }
            String urlStr = "http://"+channelA+"/"+method+"?username=673468708&password=8a1576001bea15a3e5906ba3af004392&id="+code+"&period="+dateNum+"&num=-100&datetime="+simpleDateFormat.format(new Date())+append;
            lg.info("获取实时数据,类型为:{},代码为:{},请求地址:{},时间为:{}",method,code,urlStr,dateNum);
            // 创建 URL 对象
            URL url = new URL(urlStr);
 
            // 创建 HTTP 连接
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");
 
            // 获取输入流
            BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
 
            String firstLine = reader.readLine();
            boolean dateFlag = false;
            String dateStr = "";
            if("日期".equals(firstLine.trim())){
                dateFlag = true;
                dateStr  = reader.readLine();
                firstLine = reader.readLine();
            }
 
            // 读取 CSV 数据
            String line;
            String nowCode = "";
            List<SyncKValueFromLdVo> tempList = new ArrayList<>();
            while ((line = reader.readLine()) != null) { // 打印每一行数据
                String[] dataArray = line.split(",");
                if("".equals(nowCode)){
                    nowCode = dataArray[0];
                }
                //如果产品代码不等于上一行的产品代码,则证明产品应景更换,将之前集合的数据存入redis,并清空之前的集合
                if (!nowCode.equals(dataArray[0])){
                    redisCache.deleteObject(nowCode+dateNum+"KValue");
                    redisCache.setCacheList(nowCode+dateNum+"KValue",tempList);
                    //如果百威数据为null,则进行存入
                    if(CollectionUtils.isEmpty(redisCache.getCacheList(nowCode+"Hundred"))){
                        List<BigDecimal> list = new ArrayList<>();
                        for (SyncKValueFromLdVo item : tempList){
                            list.add(item.getHignPrice());
                        }
                        redisCache.setCacheList(nowCode+"Hundred",list);
                    }
                    tempList.clear();
                    nowCode = dataArray[0];
                }
                SyncKValueFromLdVo vo = new SyncKValueFromLdVo();
                String datetimeStr = dataArray[1];
                if (dateFlag){
                    datetimeStr = dateStr + " " + datetimeStr;
                }
                vo.setDate(datetimeStr);
                vo.setKpPrice(isDecimal(dataArray[2])? new BigDecimal(dataArray[2]) : BigDecimal.ZERO);
                vo.setHignPrice(isDecimal(dataArray[3])? new BigDecimal(dataArray[3]) : BigDecimal.ZERO);
                vo.setLowPrice(isDecimal(dataArray[4])? new BigDecimal(dataArray[4]) : BigDecimal.ZERO);
                vo.setSpPrice(isDecimal(dataArray[5])? new BigDecimal(dataArray[5]) : BigDecimal.ZERO);
                if (dataArray.length > 6){
                    vo.setDealNum(isDecimal(dataArray[6])? new BigDecimal(dataArray[6]) : BigDecimal.ZERO);
                    vo.setDealPrice(isDecimal(dataArray[7])? new BigDecimal(dataArray[7]) : BigDecimal.ZERO);
                }
                //更新对应产品的缓存100条数据
                tempList.add(vo);
            }
            //全部执行完成后,将最后一个对象放入redis
            redisCache.deleteObject(nowCode+dateNum+"KValue");
 
            if (tempList.isEmpty()){
                lg.error("K线同步错误,firstLine:【{}】,dateStr:【{}】,nowCode:【{}】,dateNum:【{}】", firstLine, dateStr, nowCode, dateNum);
            }else{
                lg.info("K线同步,firstLine:【{}】,dateStr:【{}】,nowCode:【{}】,dateNum:【{}】", firstLine, dateStr, nowCode, dateNum);
            }
            redisCache.setCacheList(nowCode+dateNum+"KValue",tempList);
            //如果百威数据为null,则进行存入
            if(CollectionUtils.isEmpty(redisCache.getCacheList(nowCode+"Hundred"))){
                List<BigDecimal> list = new ArrayList<>();
                for (SyncKValueFromLdVo item : tempList){
                    list.add(item.getHignPrice());
                }
                redisCache.setCacheList(nowCode+"Hundred",list);
            }
            // 关闭连接
            reader.close();
            connection.disconnect();
        } catch (Exception e) {
            System.out.println(e.getMessage());
            e.printStackTrace();
        }
    }
 
    private void getKValueFromLdOne(String code,String method,String dateNum,String append,Integer dateType){
        try {
            SimpleDateFormat simpleDateFormat;
            if (dateType == 1){
                simpleDateFormat = new SimpleDateFormat("yyyyMMddHHmm");
            }else{
                simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
            }
            String urlStr = "http://"+channelA+"/"+method+"?username=673468708&password=8a1576001bea15a3e5906ba3af004392&id="+code+"&period="+dateNum+"&num=-100&datetime="+simpleDateFormat.format(new Date())+append;
            log.info("获取实时数据,类型为:{},代码为:{},请求地址:{},时间为:{}",method,code,urlStr,dateNum);
            // 创建 URL 对象
            URL url = new URL(urlStr);
 
            // 创建 HTTP 连接
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");
 
            // 获取输入流
            BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
 
            String firstLine = reader.readLine();
            boolean dateFlag = false;
            String dateStr = "";
            if("日期".equals(firstLine.trim())){
                dateFlag = true;
                dateStr  = reader.readLine();
                firstLine = reader.readLine();
            }
 
            // 读取 CSV 数据
            String line;
            List<SyncKValueFromLdVo> result = new ArrayList<>();
            while ((line = reader.readLine()) != null) { // 打印每一行数据
                String[] dataArray = line.split(",");
                //单个品种不返回code
                SyncKValueFromLdVo vo = new SyncKValueFromLdVo();
                String datetimeStr = dataArray[0];
                if (dateFlag){
                    datetimeStr = dateStr + " " + datetimeStr;
                }
                vo.setDate(datetimeStr);
                vo.setKpPrice(isDecimal(dataArray[1])? new BigDecimal(dataArray[1]) : BigDecimal.ZERO);
                vo.setHignPrice(isDecimal(dataArray[2])? new BigDecimal(dataArray[2]) : BigDecimal.ZERO);
                vo.setLowPrice(isDecimal(dataArray[3])? new BigDecimal(dataArray[3]) : BigDecimal.ZERO);
                vo.setSpPrice(isDecimal(dataArray[4])? new BigDecimal(dataArray[4]) : BigDecimal.ZERO);
                if (dataArray.length > 5){
                    vo.setDealNum(isDecimal(dataArray[5])? new BigDecimal(dataArray[5]) : BigDecimal.ZERO);
                    vo.setDealPrice(isDecimal(dataArray[6])? new BigDecimal(dataArray[6]) : BigDecimal.ZERO);
                }
                //更新对应产品的缓存100条数据
                result.add(vo);
            }
            //完成后将内容放入redis
            redisCache.deleteObject(code+dateNum+"KValue");
            redisCache.setCacheList(code+dateNum+"KValue",result);
            //如果百威数据为null,则进行存入
            if(CollectionUtils.isEmpty(redisCache.getCacheList(code+"Hundred"))){
                List<BigDecimal> list = new ArrayList<>();
                for (SyncKValueFromLdVo item : result){
                    list.add(item.getHignPrice());
                }
                redisCache.setCacheList(code+"Hundred",list);
            }
            // 关闭连接
            reader.close();
            connection.disconnect();
        } catch (Exception e) {
            System.out.println(e.getMessage());
            e.printStackTrace();
        }
    }
//    private void getKvalueFromMf(String code,Integer dateNum,Integer dateType){
//        try {
//            SimpleDateFormat simpleDateFormat;
//            Date date = new Date();
//            String urlStr = "http://"+channelA+"/"+method+"?username=673468708&password=8a1576001bea15a3e5906ba3af004392&id="+code+"&period="+dateNum+"&num=-100&datetime="+simpleDateFormat.format(new Date())+append;
//            log.info("获取实时数据,类型为:{},代码为:{},请求地址:{},时间为:{}",method,code,urlStr,dateNum);
//            // 创建 URL 对象
//            URL url = new URL(urlStr);
//
//            // 创建 HTTP 连接
//            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
//            connection.setRequestMethod("GET");
//
//            // 获取输入流
//            BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
//
//            String firstLine = reader.readLine();
//            boolean dateFlag = false;
//            String dateStr = "";
//            if("日期".equals(firstLine.trim())){
//                dateFlag = true;
//                dateStr  = reader.readLine();
//                firstLine = reader.readLine();
//            }
//
//            // 读取 CSV 数据
//            String line;
//            String nowCode = "";
//            List<SyncKValueFromLdVo> tempList = new ArrayList<>();
//            while ((line = reader.readLine()) != null) { // 打印每一行数据
//                String[] dataArray = line.split(",");
//                if("".equals(nowCode)){
//                    nowCode = dataArray[0];
//                }
//                //如果产品代码不等于上一行的产品代码,则证明产品应景更换,将之前集合的数据存入redis,并清空之前的集合
//                if (!nowCode.equals(dataArray[0])){
//                    redisCache.deleteObject(nowCode+dateNum+"KValue");
//                    redisCache.setCacheList(nowCode+dateNum+"KValue",tempList);
//                    tempList.clear();
//                    nowCode = dataArray[0];
//                }
//                SyncKValueFromLdVo vo = new SyncKValueFromLdVo();
//                String datetimeStr = dataArray[1];
//                if (dateFlag){
//                    datetimeStr = dateStr + " " + datetimeStr;
//                }
//                vo.setDate(datetimeStr);
//                vo.setKpPrice(new BigDecimal(dataArray[2]));
//                vo.setHignPrice(new BigDecimal(dataArray[3]));
//                vo.setLowPrice(new BigDecimal(dataArray[4]));
//                vo.setSpPrice(new BigDecimal(dataArray[5]));
//                if (dataArray.length > 6){
//                    vo.setDealNum(Integer.parseInt(dataArray[6]));
//                    vo.setDealPrice(new BigDecimal(dataArray[7]));
//                }
//                //更新对应产品的缓存100条数据
//                tempList.add(vo);
//            }
//            //全部执行完成后,将最后一个对象放入redis
//            redisCache.deleteObject(nowCode+dateNum+"KValue");
//            redisCache.setCacheList(nowCode+dateNum+"KValue",tempList);
//            // 关闭连接
//            reader.close();
//            connection.disconnect();
//        } catch (Exception e) {
//            System.out.println(e.getMessage());
//        }
//    }
 
    private Integer getPostion(String[] array,String str){
        for (int i = 0; i < array.length;i++){
            if (str.equals(array[i])){
                return i;
            }
        }
        return -1;
    }
 
 
 
    private  List<SyncCurrentValueFromLdVo> getCurrentValueFromMfVo(String code){
        List<SyncCurrentValueFromLdVo> result = new ArrayList<>();
       try {
           String urlStr = "https://data.mifengcha.com/api/v3/price?api_key=LUR8GYLFWBADUQINGGY5ZR7QWC2GVMI58RXSUONG&slug="+code;
           log.info("获取实时数据,类型为:{},代码为:{},请求地址:{},时间为:{}","数字货币",code,urlStr,new Date());
           // 创建 URL 对象
           URL url = new URL(urlStr);
 
           // 创建 HTTP 连接
           HttpURLConnection connection = (HttpURLConnection) url.openConnection();
           connection.setRequestMethod("GET");
 
           // 获取输入流
           BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
           StringBuilder response = new StringBuilder();
           String line;
           while ((line = reader.readLine()) != null) {
               response.append(line);
           }
           reader.close();
           connection.disconnect();
           String repStr = response.toString();
           JSONArray jsonArray = JSON.parseArray(repStr);
 
           for (int i = 0 ; i < jsonArray.size();i++){
               JSONObject object = jsonArray.getJSONObject(i);
               SyncCurrentValueFromLdVo vo = new SyncCurrentValueFromLdVo();
               vo.setCode(object.getString("s"));
               vo.setPrice(new BigDecimal(object.getString("u")));
               vo.setZdf(new BigDecimal(object.getString("c")));
               vo.setName(object.getString("S"));
               //更新对应个产品每秒数据
               redisCache.setCacheObject(vo.getCode()+"CurrPrice",vo.getPrice());
               redisCache.setCacheObject(vo.getCode()+"CurrZdf",vo.getZdf());
               //更新对应产品的缓存100条数据
               List<BigDecimal> list = redisCache.getCacheList(vo.getCode()+"Hundred");
               if(list != null && list.size() > 0){
                   //如果本次获取的价格和上次一样,则不保存
                   BigDecimal lastPrice = new BigDecimal(list.get(list.size()-1)+"");
                   if (lastPrice.compareTo(vo.getPrice()) != 0){
                       if(list.size() >= 100){
                           list.remove(0);
                       }
                       list.add(vo.getPrice());
                       redisCache.deleteObject(vo.getCode()+"Hundred");
                       redisCache.setCacheList(vo.getCode()+"Hundred",list);
                   }
               }
               result.add(vo);
           }
           return result;
       }catch (Exception e){
           System.out.println("调用方法异常:====="+e.getMessage());
           System.out.println(e.getMessage());
           e.printStackTrace();
       }
       return result;
    }
 
    public void getKValueFromMFVO(String oldCode,String code,Integer type,Integer dateNum){
        //获取对应的开始时间和结束时间
        Calendar calendar = Calendar.getInstance();
        Long endTime = calendar.getTimeInMillis();
        String interval ;
        SimpleDateFormat simpleDateFormat ;
        Long startTime ;
        String fh = "d";
        if (type == 1){
            Integer nums = 0 - ((100 * dateNum) + 10);
 
            calendar.add(Calendar.MINUTE,nums);
            startTime = calendar.getTimeInMillis();
            interval = dateNum + "m";
            simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
            if (dateNum == 60){
                interval = "1h";
                simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH");
            }
            fh = dateNum+"";
 
        }else{
            calendar.add(Calendar.DAY_OF_YEAR, -100);
            startTime = calendar.getTimeInMillis();
            interval = "1d";
            simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        }
        String[] codeArray = code.split(",");
        String[] oldCodeArray = oldCode.split(",");
        for(int j = 0; j < codeArray.length;j++){
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                System.out.println(e.getMessage());
            }
            //分批请求
            String urlStr = "https://data.mifengcha.com/api/v3/kline?api_key=LUR8GYLFWBADUQINGGY5ZR7QWC2GVMI58RXSUONG&desc="+codeArray[j]+"&interval="+interval+"&end="+endTime+"&market=Binance&start="+startTime;
            try {
                URL url = new URL(urlStr);
 
                // 创建 HTTP 连接
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                connection.setRequestMethod("GET");
 
                // 获取输入流
                BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
                // 读取 CSV 数据
                String line;
                List<SyncKValueFromLdVo> result = new ArrayList<>();
                StringBuilder response  = new StringBuilder();
                while ((line = reader.readLine()) != null) { // 打印每一行数据
                  response.append(line);
                }
                String reponseStr = response.toString();
                JSONArray jsonArray = JSON.parseArray(reponseStr);
                for(int i = 0; i < jsonArray.size(); i++){
                    if (i == 100){
                        break;
                    }
                    JSONObject object = jsonArray.getJSONObject(i);
                    SyncKValueFromLdVo vo = new SyncKValueFromLdVo();
                    vo.setDate(simpleDateFormat.format(new Date(object.getLong("T"))));
                    vo.setKpPrice(new BigDecimal(object.getString("o")));
                    vo.setHignPrice(new BigDecimal(object.getString("h")));
                    vo.setLowPrice(new BigDecimal(object.getString("l")));
                    vo.setSpPrice(new BigDecimal(object.getString("c")));
                    vo.setDealNum(new BigDecimal(object.getString("v")));
                    //更新对应产品的缓存100条数据
                    result.add(vo);
                }
                System.out.println("最后结果:"+result);
                System.out.println("总行数:"+result.size());
                //完成后将内容放入redis
                redisCache.deleteObject(oldCodeArray[j]+fh+"KValue");
                redisCache.setCacheList(oldCodeArray[j]+fh+"KValue",result);
                //如果百威数据为null,则进行存入
                if(CollectionUtils.isEmpty(redisCache.getCacheList(oldCodeArray[j]+"Hundred"))){
                    List<BigDecimal> list = new ArrayList<>();
                    for (SyncKValueFromLdVo item : result){
                        list.add(item.getHignPrice());
                    }
                    redisCache.setCacheList(oldCodeArray[j]+"Hundred",list);
                }
                // 关闭连接
                reader.close();
                connection.disconnect();
            }catch (Exception e){
                System.out.println(e.getMessage());
                e.printStackTrace();
            }
        }
    }
 
    private boolean isDecimal(String str){
        return str.matches("-?\\d+(\\.\\d+)?"); // 匹配整数或小数格式
    }
 
 
    private List<BigDecimal> generateFluctuatedValues(BigDecimal baseValue, int numberOfValues) {
        List<BigDecimal> fluctuatedValues = new ArrayList<>();
        Random random = new Random();
 
        for (int i = 0; i < numberOfValues; i++) {
            BigDecimal fluctuation = baseValue.multiply(new BigDecimal(0.002)); // 计算波动范围
            double randomFactor = random.nextDouble(); // 生成随机因子(0到1之间的随机数)
            BigDecimal randomValue = fluctuation.multiply(new BigDecimal(randomFactor)); // 计算波动值
            BigDecimal newValue = baseValue.add(randomValue); // 计算新值
            fluctuatedValues.add(newValue); // 将新值添加到列表中
        }
 
        return fluctuatedValues;
    }
}