siat 3.10.25__py3-none-any.whl → 3.10.75__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- siat/bond.py +57 -23
- siat/capm_beta.py +2 -1
- siat/capm_beta2.py +34 -3
- siat/common.py +7 -1
- siat/economy.py +3 -3
- siat/fama_french.py +99 -8
- siat/financials.py +52 -16
- siat/fund_china.py +46 -17
- siat/future_china.py +47 -59
- siat/grafix.py +218 -155
- siat/market_china.py +2 -1
- siat/option_china.py +49 -15
- siat/option_pricing.py +13 -6
- siat/risk_adjusted_return.py +105 -54
- siat/risk_adjusted_return2.py +3 -1
- siat/risk_evaluation.py +46 -5
- siat/sector_china.py +12 -2
- siat/security_prices.py +6 -5
- siat/security_trend2.py +11 -11
- siat/stock.py +6 -3
- siat/translate.py +2 -1
- {siat-3.10.25.dist-info → siat-3.10.75.dist-info}/METADATA +1 -1
- {siat-3.10.25.dist-info → siat-3.10.75.dist-info}/RECORD +26 -26
- {siat-3.10.25.dist-info → siat-3.10.75.dist-info}/LICENSE +0 -0
- {siat-3.10.25.dist-info → siat-3.10.75.dist-info}/WHEEL +0 -0
- {siat-3.10.25.dist-info → siat-3.10.75.dist-info}/top_level.txt +0 -0
siat/security_prices.py
CHANGED
@@ -2427,7 +2427,7 @@ if __name__ =="__main__":
|
|
2427
2427
|
|
2428
2428
|
df=get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto')
|
2429
2429
|
|
2430
|
-
def get_portfolio_prices(portfolio,fromdate,todate,adj=
|
2430
|
+
def get_portfolio_prices(portfolio,fromdate,todate,adj=True,source='auto',RF=0):
|
2431
2431
|
"""
|
2432
2432
|
功能:抓取投资组合portfolio的每日价值和FF3各个因子
|
2433
2433
|
输入:投资组合portfolio,开始日期,结束日期
|
@@ -2506,16 +2506,17 @@ def get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto'):
|
|
2506
2506
|
pf4=p
|
2507
2507
|
"""
|
2508
2508
|
pf4['Ret%']=pf4['Close'].pct_change()*100.0
|
2509
|
+
pf4['Ret-RF']=pf4['Ret%'] - RF*100/365
|
2509
2510
|
|
2510
|
-
|
2511
|
+
#获得期间的市场收益率
|
2511
2512
|
try:
|
2512
2513
|
m=get_prices(mktidx,fromdate,todate)
|
2513
2514
|
except:
|
2514
2515
|
print(" #Error(get_portfolio_prices): info inaccesible for market index",mktidx)
|
2515
2516
|
return None
|
2516
2517
|
|
2517
|
-
m['Mkt-RF']=m['Close'].pct_change()*100.0
|
2518
|
-
m['RF']=
|
2518
|
+
m['Mkt-RF']=m['Close'].pct_change()*100.0 - RF*100/365
|
2519
|
+
m['RF']=RF*100/365
|
2519
2520
|
rf_df=m[['Mkt-RF','RF']]
|
2520
2521
|
|
2521
2522
|
#合并pf4与rf_df
|
@@ -2539,7 +2540,7 @@ def get_portfolio_prices(portfolio,fromdate,todate,adj=False,source='auto'):
|
|
2539
2540
|
|
2540
2541
|
pfdf=prices[['Portfolio','Shares','Date','Weekday', \
|
2541
2542
|
'Open','Close','Adj Close','Adjustment', \
|
2542
|
-
'Volume','Amount','Ret%','Mkt-RF','RF']]
|
2543
|
+
'Volume','Amount','Ret%','Ret-RF','Mkt-RF','RF']]
|
2543
2544
|
|
2544
2545
|
return pfdf
|
2545
2546
|
|
siat/security_trend2.py
CHANGED
@@ -594,17 +594,17 @@ def security_trend(ticker,indicator='Close',adjust='', \
|
|
594
594
|
adjust='qfq'
|
595
595
|
|
596
596
|
df=compare_beta_security(ticker=tickers,start=fromdate,end=todate, \
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
597
|
+
adjust=adjust, \
|
598
|
+
RF=RF,regression_period=regression_period, \
|
599
|
+
attention_value=attention_value,attention_value_area=attention_value_area, \
|
600
|
+
attention_point=attention_point,attention_point_area=attention_point_area, \
|
601
|
+
band_area=band_area, \
|
602
|
+
graph=graph,facecolor=facecolor,loc=loc1, \
|
603
|
+
annotate=annotate,annotate_value=annotate_value, \
|
604
|
+
mark_top=mark_top,mark_bottom=mark_bottom, \
|
605
|
+
mark_start=mark_start,mark_end=mark_end, \
|
606
|
+
mktidx=market_index,source=source, \
|
607
|
+
ticker_type=ticker_type)
|
608
608
|
|
609
609
|
return df
|
610
610
|
|
siat/stock.py
CHANGED
@@ -2320,7 +2320,7 @@ if __name__ =="__main__":
|
|
2320
2320
|
|
2321
2321
|
|
2322
2322
|
|
2323
|
-
def candlestick(stkcd,
|
2323
|
+
def candlestick(stkcd,start,end,volume=True,style='China',mav=[5,10], \
|
2324
2324
|
ticker_type='auto',facecolor='whitesmoke',loc='best'):
|
2325
2325
|
"""
|
2326
2326
|
功能:绘制证券价格K线图。
|
@@ -2331,6 +2331,7 @@ def candlestick(stkcd,fromdate,todate,volume=True,style='China',mav=[5,10], \
|
|
2331
2331
|
输出:绘制证券价格蜡烛图线图
|
2332
2332
|
返回:证券价格数据表
|
2333
2333
|
"""
|
2334
|
+
fromdate=start; todate=end
|
2334
2335
|
|
2335
2336
|
#找出mav的最长天数
|
2336
2337
|
mav_max=0
|
@@ -2469,7 +2470,7 @@ if __name__ =="__main__":
|
|
2469
2470
|
price=candlestick("000002.SZ","2020-2-1","2020-2-29")
|
2470
2471
|
|
2471
2472
|
#==============================================================================
|
2472
|
-
def candlestick_pro(stkcd,
|
2473
|
+
def candlestick_pro(stkcd,start,end, \
|
2473
2474
|
colorup='#00ff00',colordown='#ff00ff',style='nightclouds', \
|
2474
2475
|
ticker_type='auto'):
|
2475
2476
|
"""
|
@@ -2482,6 +2483,7 @@ def candlestick_pro(stkcd,fromdate,todate, \
|
|
2482
2483
|
返回:证券价格数据表
|
2483
2484
|
注意:可能导致其后的matplotlib绘图汉字乱码
|
2484
2485
|
"""
|
2486
|
+
fromdate=start; todate=end
|
2485
2487
|
|
2486
2488
|
#抓取证券价格
|
2487
2489
|
from siat.security_price2 import get_price_1ticker_mixed
|
@@ -2569,7 +2571,7 @@ if __name__ =="__main__":
|
|
2569
2571
|
|
2570
2572
|
colorup='red';colordown='green';width=0.7
|
2571
2573
|
|
2572
|
-
def candlestick_demo(stkcd,
|
2574
|
+
def candlestick_demo(stkcd,start,end, \
|
2573
2575
|
colorup='red',colordown='green',width=0.7, \
|
2574
2576
|
ticker_type='auto',facecolor='whitesmoke'):
|
2575
2577
|
"""
|
@@ -2579,6 +2581,7 @@ def candlestick_demo(stkcd,fromdate,todate, \
|
|
2579
2581
|
输出:绘制证券价格蜡烛图线图
|
2580
2582
|
返回:证券价格数据表
|
2581
2583
|
"""
|
2584
|
+
fromdate=start; todate=end
|
2582
2585
|
|
2583
2586
|
#抓取证券价格
|
2584
2587
|
from siat.security_price2 import get_price_1ticker_mixed
|
siat/translate.py
CHANGED
@@ -1283,7 +1283,8 @@ def codetranslate0(code):
|
|
1283
1283
|
['T82U.SI','Suntec REIT'],['HMN.SI','雅诗阁公寓REIT'],
|
1284
1284
|
|
1285
1285
|
#期货==================================================================
|
1286
|
-
["HG=F",'COMEX铜矿石期货'],
|
1286
|
+
["HG=F",'COMEX铜矿石期货'],
|
1287
|
+
["CL=F",'NYM原油期货'],["BZ=F",'NYM布伦特原油期货'],
|
1287
1288
|
["NG=F",'NYM天然气期货'],["MTF=F",'NYM煤炭期货'],
|
1288
1289
|
["GC=F",'COMEX黄金期货'],["MGC=F",'COMEX微型黄金期货'],
|
1289
1290
|
["SGC=F",'上海黄金期货'],
|
@@ -10,16 +10,16 @@ siat/beta_adjustment.py,sha256=u_EZt3rEbvXDpqcJp_hUh9637P5vsrRHEfX6uG9Uin8,37292
|
|
10
10
|
siat/beta_adjustment_china.py,sha256=z17bstK2WtlKKqUl6aCcP3Pv661PWgyWqAqGHGUH7Yk,20807
|
11
11
|
siat/beta_adjustment_test.py,sha256=nBhvQQfqxooCHjy5hL0a8V0ZC58BjuCZVFpqpWpHeF0,2467
|
12
12
|
siat/blockchain.py,sha256=awF3GDtlwaJhku0a2kLuXOS8d3IzkjR_RyzlZWvD3L4,6032
|
13
|
-
siat/bond.py,sha256=
|
13
|
+
siat/bond.py,sha256=A4CrEeUaB1HqijPjEcrdzoxiekTi39Y5TwMr-B74eSs,111438
|
14
14
|
siat/bond_base.py,sha256=ClHJ5dzjoO9knGhX65Sbyk0i0uKQpmdKGUblR-wrXTs,37681
|
15
15
|
siat/bond_china.py,sha256=WzUhjYYk8tsr3BDWLQcpuj9DqNxTzBSIi_wuAOZ48kY,3082
|
16
16
|
siat/bond_test.py,sha256=yUOFw7ddGU-kb1rJdnsjkJWziDNgUR7OLDA7F7Ub91A,5246
|
17
17
|
siat/bond_zh_sina.py,sha256=26BohGcS120utwqg9dJvdGm5OkuNpNu5bco80uOuQpU,4423
|
18
|
-
siat/capm_beta.py,sha256=
|
19
|
-
siat/capm_beta2.py,sha256=
|
18
|
+
siat/capm_beta.py,sha256=1NjLRxD0fCZvSCzCDtI_CMSB-PFMLOeDfrwcfWa-vsg,29118
|
19
|
+
siat/capm_beta2.py,sha256=4g8pOFCwFrEpLx2NJbhL2nl_nrWaOwgbPCHx1G6P_tI,35949
|
20
20
|
siat/capm_beta_test.py,sha256=ImR0c5mc4hIl714XmHztdl7qg8v1E2lycKyiqnFj6qs,1745
|
21
21
|
siat/cmat_commons.py,sha256=Nj9Kf0alywaztVoMVeVVL_EZk5jRERJy8R8kBw88_Tg,38116
|
22
|
-
siat/common.py,sha256=
|
22
|
+
siat/common.py,sha256=CEBH4Z510UGoxDRkv6z24MNqJKnv2NFHH52i5hqYTUw,184223
|
23
23
|
siat/compare_cross.py,sha256=3iP9TH2h3w27F2ARZc7FjKcErYCzWRc-TPiymOyoVtw,24171
|
24
24
|
siat/compare_cross_test.py,sha256=xra5XYmQGEtfIZL2h-GssdH2hLdFIhG3eoCrkDrL3gY,3473
|
25
25
|
siat/concepts_iwencai.py,sha256=m1YEDtECRT6FqtzlKm91pt2I9d3Z_XoP59BtWdRdu8I,3061
|
@@ -29,20 +29,20 @@ siat/cryptocurrency.py,sha256=QSc4jK9VFlqBWVu-0th1BIMt8wC-5R5sWky3EaNupy0,27940
|
|
29
29
|
siat/cryptocurrency_test.py,sha256=3AikTNJ7j-HwLGLIYEfyXZ3bLVuLeru9mwiwHQi2SdA,2669
|
30
30
|
siat/derivative.py,sha256=qV8n09799eqLc26ojR6vN5n_X-xd7rGwdYjgq-wBih8,41483
|
31
31
|
siat/economy-20230125.py,sha256=vxZZlPnLkh7SpGMVEPLwxjt0yYLSVmdZrO-s2NYLyoM,73848
|
32
|
-
siat/economy.py,sha256=
|
32
|
+
siat/economy.py,sha256=4HxAb44uQKyrYAMcS9RoSVc3xiHn7GSeliQ6ICQKoOc,84197
|
33
33
|
siat/economy2.py,sha256=inmArHl43HFnSn6O4uY-xcsQY93IyMlFet3pQ7JpsjM,81089
|
34
34
|
siat/economy_test.py,sha256=6vjNlPz7W125pJb7simCddobSEp3jmLIMvVkLRZ7zW8,13339
|
35
35
|
siat/esg.py,sha256=GMhaonIKtvOK83rhpQUH5aJt2OL3HQBSVfD__Yw-0oo,19040
|
36
36
|
siat/esg_test.py,sha256=Z9m6GUt8O7oHZSEG9aDYpGdvvrv2AiRJdHTiU6jqmZ0,2944
|
37
37
|
siat/event_study.py,sha256=uQojKR5Mg3AC1PCSpx_CBHfUjJr0B4E-iCWxNF0Vif8,37178
|
38
38
|
siat/exchange_bond_china.pickle,sha256=zDqdPrFacQ0nqjP_SuF6Yy87EgijIRsFvFroW7FAYYY,1265092
|
39
|
-
siat/fama_french.py,sha256=
|
39
|
+
siat/fama_french.py,sha256=Af41ArHUIaYKGGZXuzQ3zXaYXxZKaFTG0WLwhW2NaEY,50968
|
40
40
|
siat/fama_french_test.py,sha256=M4O23lBKsJxhWHRluwCb3l7HSEn3OFTjzGMpehcevRg,4678
|
41
41
|
siat/fin_stmt2_yahoo.py,sha256=LGmspk0nKyz4X87MtcovZXUfMQkAvrWINuxR4HQ8PI8,41178
|
42
42
|
siat/financial_base.py,sha256=A1rV7XQOVFpCXCV-T6Ge0QeF897hINiu0olN1XWeaFk,41287
|
43
43
|
siat/financial_statements.py,sha256=7cv0z3djnfWsbnvW04ScrWSjCLEyUFrbGgQ6NtclyD0,25512
|
44
44
|
siat/financial_statements_test.py,sha256=FLhx8JD-tVVWSBGux6AMz1jioXX4U4bp9DmgFHYXb_w,716
|
45
|
-
siat/financials.py,sha256=
|
45
|
+
siat/financials.py,sha256=__Fcb_3Xnvpm7iQD5kPRCwf_5_lRh74lp8ILIeUsClc,87685
|
46
46
|
siat/financials2 - 副本.py,sha256=dKlNjIfKeoSy055fQ6E6TUj9HEoO5Ney9grD84J5kfk,14389
|
47
47
|
siat/financials2.py,sha256=xCxqubwCNdfS7WyIb5IXTFonMZfw8FM9F8TCIkAruhk,58795
|
48
48
|
siat/financials_china.py,sha256=iHF3lEESTK9DLWLBHFpyxn3S_dO2sNBE89xqaVYpNCw,192459
|
@@ -57,20 +57,20 @@ siat/financials_test.py,sha256=HJ3CPo_Xckz2wXi3AEP6ZNWCF1Duc1pLi0Y10USiImc,23829
|
|
57
57
|
siat/fred_test.py,sha256=KF50ssSbsfpa_kT6iuomD0vG4eXztAcOasZxg1OGX5w,1201
|
58
58
|
siat/fund.py,sha256=KS7NgzLLifwUJAQX4HpPi4CjLBamUcTpjsda4KSnfHE,24656
|
59
59
|
siat/fund_china.pickle,sha256=x_nPPdwy7wzIhtZQOplgDyTSyyUdXy9lbNxWysq7N6k,2437771
|
60
|
-
siat/fund_china.py,sha256=
|
60
|
+
siat/fund_china.py,sha256=TEd007DAnod-86fNOPDxfSeNOzLd0rNoF5r08yDyClw,138292
|
61
61
|
siat/fund_china_test.py,sha256=-Bh6m0J0GPpIbYXx-H2vpzJoNFI6pE2C2jVPa8DazgE,6649
|
62
62
|
siat/fund_test.py,sha256=V4ADb8Gsp8gyeFTwcgRsJBpnUih_O-Q2V1ILc5oKjK8,1116
|
63
|
-
siat/future_china.py,sha256=
|
63
|
+
siat/future_china.py,sha256=_I7IeV8QEf9XembC1X06zQJhMCnP2RjSUG1E8Zx20VA,17638
|
64
64
|
siat/future_china_test.py,sha256=BrSzmDVaOHki6rntOtosmRn-6dkfOBuLulJNqh7MOpc,1163
|
65
65
|
siat/global_index_test.py,sha256=hnFp3wqqzzL-kAP8mgxDZ54Bd5Ijf6ENi5YJlGBgcXw,2402
|
66
66
|
siat/google_authenticator.py,sha256=ZUbZR8OW0IAKDbcYtlqGqIpZdERpFor9NccFELxg9yI,1637
|
67
|
-
siat/grafix.py,sha256=
|
67
|
+
siat/grafix.py,sha256=HSCBSAvoYpP-WcuThvwiQ1--bba9_mtPu4y5X5WBk4A,145099
|
68
68
|
siat/grafix_test.py,sha256=kXvcpLgQNO7wd30g_bWljLj5UH7bIVI0_dUtXbfiKR0,3150
|
69
69
|
siat/holding_risk.py,sha256=uWRtMMJqKr-puQn26g6Fq5N3mFB70c0B99zLQug8hAo,30774
|
70
70
|
siat/holding_risk_test.py,sha256=FRlw_9wFG98BYcg_cSj95HX5WZ1TvkGaOUdXD7-V86s,474
|
71
71
|
siat/local_debug_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
|
72
72
|
siat/luchy_draw.py,sha256=8Ue-NKnvSVqINPY1eXat0NJat5MR-gex_K62aOYFdmA,20486
|
73
|
-
siat/market_china.py,sha256=
|
73
|
+
siat/market_china.py,sha256=UaT_uMAD6kzZPGo681kijIxxp90xdrOCr7zn8nmFPbA,50896
|
74
74
|
siat/markowitz.py,sha256=PtQ_6rLyh5SEXyO7SCDyYChcgXl6ddcdgQ06HETjDVE,97990
|
75
75
|
siat/markowitz2-20240620.py,sha256=irZAPnjaatFsKQmFRMENP-cO6bEUl2narYtkU5NKTWI,108019
|
76
76
|
siat/markowitz2.py,sha256=2FT3yzub2vdmC87L495BECyTwJXY6xcOFflI1lSstmQ,123237
|
@@ -84,33 +84,33 @@ siat/markowitz_test2.py,sha256=FcVZqYU5va4567WGUVUJ7cMQdVbBGxeBAz82Y3BhCTI,2193
|
|
84
84
|
siat/ml_cases.py,sha256=FYDk0O7l9hhHlbrlOVGgbH-h2DA503lhKFi9XugH1f0,86874
|
85
85
|
siat/ml_cases_example.py,sha256=xRGb3YTQEDTOnaWNzZN_myU5umQnA2RdMNiPrxTmn9c,1673
|
86
86
|
siat/ml_cases_example1.py,sha256=xRGb3YTQEDTOnaWNzZN_myU5umQnA2RdMNiPrxTmn9c,1673
|
87
|
-
siat/option_china.py,sha256
|
87
|
+
siat/option_china.py,sha256=-JBl_wnKIPLqusDd0yLQUoHIkUjVJCCuIlUzToX3D-o,122560
|
88
88
|
siat/option_china_test.py,sha256=UQ-YUHUjoGBQyanLcM-yzqeEIUQP_gCQIeT0W6rnUnA,16355
|
89
|
-
siat/option_pricing.py,sha256=
|
89
|
+
siat/option_pricing.py,sha256=6Vm1MuvYPBY14mqFTS10dmWxAlMHmA5k5Ucfq20A66U,74145
|
90
90
|
siat/option_pricing_test.py,sha256=eeorV5Ja5vjlRXnP6fWJHetGU5Vb8SnLopkC6RV3GfA,2203
|
91
91
|
siat/option_sina_api_test.py,sha256=dn-k_wrQnAaNKHoROvWJEc7lqlU0bwiV2Aa4usWAFGM,5908
|
92
92
|
siat/other_indexes.py,sha256=vx9am_kqogvKiJ82qrw5vqv-4wG4qdvHI0XCdAW9n7s,13842
|
93
93
|
siat/proxy_test.py,sha256=erQJrmGs2X46z8Gb1h-7GYQ0rTUcaR8dxHExWoBz2eM,2610
|
94
94
|
siat/quandl_test.py,sha256=EcPoXnLuqzPl5dKyVEZi3j3PJZFpsnU_iNPhLWC9p-A,1552
|
95
|
-
siat/risk_adjusted_return.py,sha256=
|
96
|
-
siat/risk_adjusted_return2.py,sha256=
|
95
|
+
siat/risk_adjusted_return.py,sha256=EfUnC1BADCHG0abEa_h3k4ADQQy_LyW7D9J7ZdPCh68,56680
|
96
|
+
siat/risk_adjusted_return2.py,sha256=U1iKADTnWjywCkABPtr6tICYY8zmiLZyuENMLV0yMZk,87216
|
97
97
|
siat/risk_adjusted_return_test.py,sha256=m_VHL5AtT74cJv5i7taTeTfnkX48y0AFJk5phawyYWg,3416
|
98
|
-
siat/risk_evaluation.py,sha256=
|
98
|
+
siat/risk_evaluation.py,sha256=PrkAb1X7_6WcFXvEYuouXGq06puPbfo-3GHF1PTvly8,78399
|
99
99
|
siat/risk_evaluation_test.py,sha256=YEXM96gKzTfwN4U61AS4Rr1tV7KgUvn4rRC6f3iMw9s,3731
|
100
100
|
siat/risk_free_rate.py,sha256=IBuRqA2kppdZsW4D4fapW7vnM5HMEXOn95A5r9Pkwlo,12384
|
101
101
|
siat/risk_free_rate_test.py,sha256=CpmhUf8aEAEZeNu4gvWP2Mz2dLoIgBX5bI41vfUBEr8,4285
|
102
|
-
siat/sector_china.py,sha256=
|
102
|
+
siat/sector_china.py,sha256=tUU-tM93HBp2ArWzULN8279pHVzHI535K_DAJLbr850,157690
|
103
103
|
siat/sector_china_test.py,sha256=1wq7ef8Bb_L8F0h0W6FvyBrIcBTEbrTV7hljtpj49U4,5843
|
104
104
|
siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
|
105
105
|
siat/security_price2.py,sha256=uC-wA6w3IlA9ZOJYINqIB7LexCbrnnqTkHTPuCSCwpo,27697
|
106
|
-
siat/security_prices.py,sha256=
|
106
|
+
siat/security_prices.py,sha256=y9SDGA7IMAlMJeEkWnCmE_uueL4WCDeth6BMz825g5k,116704
|
107
107
|
siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
|
108
108
|
siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
|
109
109
|
siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmWBPk,24854
|
110
|
-
siat/security_trend2.py,sha256=
|
110
|
+
siat/security_trend2.py,sha256=m6bAuP8ziw6RJ3hJ18r_gkRCiD9UUIYcqQbTlfuZ2pg,31768
|
111
111
|
siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
|
112
112
|
siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
|
113
|
-
siat/stock.py,sha256=
|
113
|
+
siat/stock.py,sha256=TWZ7WguAXJSEUq0fiursA5hnunqWAltMuH1jEMLBjpk,160288
|
114
114
|
siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
|
115
115
|
siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
|
116
116
|
siat/stock_china.py,sha256=vHIc2UuXIGRkRvyL4fjTaNAoyFaq022p9FxPah6dscI,96399
|
@@ -136,7 +136,7 @@ siat/transaction_test.py,sha256=Z8g1LJCN4-mnUByXMUMoFmN0t105cbmsz2QmvSuIkbU,1858
|
|
136
136
|
siat/translate-20230125.py,sha256=NPPSXhT38s5t9fzMvl_fvi4ckSB73ThLmZetVI-xGdU,117953
|
137
137
|
siat/translate-20230206.py,sha256=-vtI125WyaJhmPotOpDAmclt_XnYVaWU9ByLWZ6FyYE,118133
|
138
138
|
siat/translate-20230215.py,sha256=TJgtPE3n8IjljmZ4Pefy8dmHoNdFF-1zpML6BhA9FKE,121657
|
139
|
-
siat/translate.py,sha256=
|
139
|
+
siat/translate.py,sha256=E54jzmGRbBDP-drytcCyxdO89M9s30fmy-wIcQfuo7U,263346
|
140
140
|
siat/translate_20240606.py,sha256=63IyHWEU3Uz9mjwyuAX3fqY4nUMdwh0ICQAgmgPXP7Y,215121
|
141
141
|
siat/translate_241003_keep.py,sha256=un7Fqe1v35MXsja5exZgjmLzrZtt66NARZIGlyFuGGU,218747
|
142
142
|
siat/universal_test.py,sha256=CDAOffW1Rvs-TcNN5giWVvHMlch1w4dp-w5SIV9jXL0,3936
|
@@ -145,8 +145,8 @@ siat/valuation_china.py,sha256=eSKIDckyjG8QkENlW_OKkqbQHno8pzDcomBO9iGNJVM,83079
|
|
145
145
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
146
146
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
147
147
|
siat/yf_name.py,sha256=laNKMTZ9hdenGX3IZ7G0a2RLBKEWtUQJFY9CWuk_fp8,24058
|
148
|
-
siat-3.10.
|
149
|
-
siat-3.10.
|
150
|
-
siat-3.10.
|
151
|
-
siat-3.10.
|
152
|
-
siat-3.10.
|
148
|
+
siat-3.10.75.dist-info/LICENSE,sha256=NTEMMROY9_4U1szoKC3N2BLHcDd_o5uTgqdVH8tbApw,1071
|
149
|
+
siat-3.10.75.dist-info/METADATA,sha256=MAXu-a27L4Tc-tPQ10dA9HjnH8CrZJmNp_nkwM5xxBo,8222
|
150
|
+
siat-3.10.75.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
151
|
+
siat-3.10.75.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
152
|
+
siat-3.10.75.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|