siat 3.8.1__py3-none-any.whl → 3.8.10__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/beta_adjustment.py +1 -1
- siat/beta_adjustment_china.py +1 -1
- siat/bond.py +4 -2
- siat/bond_base.py +2 -1
- siat/bond_china.py +2 -1
- siat/capm_beta2.py +57 -14
- siat/common.py +38 -11
- siat/cryptocurrency.py +6 -3
- siat/economy2.py +72 -9
- siat/financials.py +4 -2
- siat/financials2.py +4 -2
- siat/financials_china.py +2 -1
- siat/fund.py +12 -12
- siat/fund_china.py +561 -2
- siat/grafix.py +66 -24
- siat/holding_risk.py +4 -2
- siat/market_china.py +4 -1
- siat/markowitz.py +7 -7
- siat/markowitz2.py +6 -5
- siat/option_china.py +3 -2
- siat/risk_adjusted_return.py +2 -2
- siat/risk_evaluation.py +10 -6
- siat/sector_china.py +52 -20
- siat/security_trend2.py +10 -2
- siat/stock.py +17 -4
- siat/stock_profile.py +2 -1
- siat/stock_technical.py +2 -1
- {siat-3.8.1.dist-info → siat-3.8.10.dist-info}/METADATA +2 -10
- {siat-3.8.1.dist-info → siat-3.8.10.dist-info}/RECORD +32 -32
- {siat-3.8.1.dist-info → siat-3.8.10.dist-info}/WHEEL +1 -1
- {siat-3.8.1.dist-info → siat-3.8.10.dist-info}/LICENSE +0 -0
- {siat-3.8.1.dist-info → siat-3.8.10.dist-info}/top_level.txt +0 -0
siat/security_trend2.py
CHANGED
@@ -198,7 +198,7 @@ def security_trend(ticker,indicator='Close',adjust='', \
|
|
198
198
|
注意:本参数需要特殊访问获取数据。
|
199
199
|
|
200
200
|
ret_type、RF、regression_period和market_index:仅用于计算RAR指标和CAPM贝塔系数。
|
201
|
-
ret_type:指定计算RAR
|
201
|
+
ret_type:指定计算RAR的收益率类型,支持滚动和扩展收益率,不同种类的计算结果之间不可比。
|
202
202
|
RF:指定年化无风险利率,非百分比数值。
|
203
203
|
regression_period:指定CAPM回归时的日期期间跨度,为日历日(自然日),默认一年。
|
204
204
|
market_index:用于计算CAPM回归贝塔系数时的市场收益率。
|
@@ -523,6 +523,7 @@ def security_trend(ticker,indicator='Close',adjust='', \
|
|
523
523
|
axhline_value=axhline_value,axhline_label=axhline_label, \
|
524
524
|
preprocess=preprocess,linewidth=linewidth, \
|
525
525
|
scaling_option=scaling_option, \
|
526
|
+
band_area=band_area, \
|
526
527
|
graph=graph,loc=loc1, \
|
527
528
|
annotate=annotate,annotate_value=annotate_value, \
|
528
529
|
smooth=smooth, \
|
@@ -539,7 +540,8 @@ def security_trend(ticker,indicator='Close',adjust='', \
|
|
539
540
|
print("Scenario 6: indicator_group2 RAR")
|
540
541
|
print("attention_value=",attention_value)
|
541
542
|
print("attention_point=",attention_point)
|
542
|
-
|
543
|
+
|
544
|
+
# ret_type要使用复权价
|
543
545
|
df=compare_rar_security(ticker=tickers,start=fromdate,end=todate,rar=measures, \
|
544
546
|
ret_type=ret_type,RF=RF,regression_period=regression_period, \
|
545
547
|
attention_value=attention_value,attention_value_area=attention_value_area, \
|
@@ -556,11 +558,17 @@ def security_trend(ticker,indicator='Close',adjust='', \
|
|
556
558
|
|
557
559
|
# 情形7:单个或多个证券,CAPM贝塔系数=========================================
|
558
560
|
if indicator_group4:
|
561
|
+
#if 'adj' in ret_type.lower() and adjust == '':
|
562
|
+
if adjust == '':
|
563
|
+
# 使用前复权价
|
564
|
+
adjust='qfq'
|
565
|
+
|
559
566
|
df=compare_beta_security(ticker=tickers,start=fromdate,end=todate, \
|
560
567
|
adjust=adjust, \
|
561
568
|
RF=RF,regression_period=regression_period, \
|
562
569
|
attention_value=attention_value,attention_value_area=attention_value_area, \
|
563
570
|
attention_point=attention_point,attention_point_area=attention_point_area, \
|
571
|
+
band_area=band_area, \
|
564
572
|
graph=graph,facecolor=facecolor,loc=loc1, \
|
565
573
|
annotate=annotate,annotate_value=annotate_value, \
|
566
574
|
mark_top=mark_top,mark_bottom=mark_bottom,mark_end=mark_end, \
|
siat/stock.py
CHANGED
@@ -24,7 +24,8 @@ from siat.security_price2 import *
|
|
24
24
|
|
25
25
|
#==============================================================================
|
26
26
|
import matplotlib.pyplot as plt
|
27
|
-
plt.rcParams['figure.figsize']=(12.8,7.2)
|
27
|
+
#plt.rcParams['figure.figsize']=(12.8,7.2)
|
28
|
+
plt.rcParams['figure.figsize']=(12.8,6.4)
|
28
29
|
plt.rcParams['figure.dpi']=300
|
29
30
|
plt.rcParams['font.size'] = 13
|
30
31
|
plt.rcParams['xtick.labelsize']=11 #横轴字体大小
|
@@ -71,7 +72,8 @@ def reset_plt():
|
|
71
72
|
|
72
73
|
#尝试恢复绘图尺寸
|
73
74
|
#统一设定绘制的图片大小:数值为英寸,1英寸=100像素
|
74
|
-
plt.rcParams['figure.figsize']=(12.8,7.2)
|
75
|
+
#plt.rcParams['figure.figsize']=(12.8,7.2)
|
76
|
+
plt.rcParams['figure.figsize']=(12.8,6.4)
|
75
77
|
plt.rcParams['figure.dpi']=300
|
76
78
|
plt.rcParams['font.size'] = 13
|
77
79
|
plt.rcParams['xtick.labelsize']=11 #横轴字体大小
|
@@ -1963,6 +1965,7 @@ def compare_msecurity(tickers,measure,start,end, \
|
|
1963
1965
|
preprocess='none',linewidth=1.5, \
|
1964
1966
|
scaling_option='start', \
|
1965
1967
|
plus_sign=False, \
|
1968
|
+
band_area='', \
|
1966
1969
|
graph=True,loc='best',facecolor='whitesmoke', \
|
1967
1970
|
annotate=False,annotate_value=False, \
|
1968
1971
|
smooth=True, \
|
@@ -2046,7 +2049,16 @@ def compare_msecurity(tickers,measure,start,end, \
|
|
2046
2049
|
continue
|
2047
2050
|
|
2048
2051
|
df_tmp1=pd.DataFrame(df_tmp[measure])
|
2049
|
-
|
2052
|
+
|
2053
|
+
tname=ticker_name(t,tt)
|
2054
|
+
df_tmp1.rename(columns={measure:tname},inplace=True)
|
2055
|
+
|
2056
|
+
# 将band_area中的ticker替换为tname
|
2057
|
+
if band_area != '':
|
2058
|
+
for index, item in enumerate(band_area):
|
2059
|
+
if item == t:
|
2060
|
+
band_area[index] = tname
|
2061
|
+
|
2050
2062
|
if len(dfs)==0:
|
2051
2063
|
dfs=df_tmp1
|
2052
2064
|
else:
|
@@ -2139,6 +2151,7 @@ def compare_msecurity(tickers,measure,start,end, \
|
|
2139
2151
|
data_label=False,resample_freq='H',smooth=smooth,linewidth=linewidth,loc=loc, \
|
2140
2152
|
attention_value=attention_value,attention_value_area=attention_value_area, \
|
2141
2153
|
attention_point=attention_point,attention_point_area=attention_point_area, \
|
2154
|
+
band_area=band_area, \
|
2142
2155
|
annotate=annotate,annotate_value=annotate_value,plus_sign=plus_sign, \
|
2143
2156
|
mark_top=mark_top,mark_bottom=mark_bottom,mark_end=mark_end,facecolor=facecolor)
|
2144
2157
|
|
@@ -2573,7 +2586,7 @@ def candlestick_demo(stkcd,fromdate,todate, \
|
|
2573
2586
|
|
2574
2587
|
print('')
|
2575
2588
|
#specify the size of the graph
|
2576
|
-
#fig,ax=plt.subplots(figsize=(
|
2589
|
+
#fig,ax=plt.subplots(figsize=(12.8,6.4))
|
2577
2590
|
fig,ax=plt.subplots()
|
2578
2591
|
|
2579
2592
|
#绘制各个价格的折线图
|
siat/stock_profile.py
CHANGED
@@ -515,7 +515,8 @@ def plot_sustainability(sustainability,option="ESG"):
|
|
515
515
|
else: width=round(2.9/l,2)
|
516
516
|
#print("Firms:",s.index,", Width:",width)
|
517
517
|
|
518
|
-
fig,ax=plt.subplots(figsize=(10,6))
|
518
|
+
#fig,ax=plt.subplots(figsize=(10,6))
|
519
|
+
fig,ax=plt.subplots(figsize=(12.8,6.4))
|
519
520
|
|
520
521
|
#绘制分数和分位数图
|
521
522
|
if option=="ESG":
|
siat/stock_technical.py
CHANGED
@@ -25,7 +25,8 @@ from siat.stock import *
|
|
25
25
|
from siat.valuation import *
|
26
26
|
#==============================================================================
|
27
27
|
import matplotlib.pyplot as plt
|
28
|
-
plt.rcParams['figure.figsize']=(12.8,7.2)
|
28
|
+
#plt.rcParams['figure.figsize']=(12.8,7.2)
|
29
|
+
plt.rcParams['figure.figsize']=(12.8,6.4)
|
29
30
|
plt.rcParams['figure.dpi']=300
|
30
31
|
plt.rcParams['font.size'] = 13
|
31
32
|
plt.rcParams['xtick.labelsize']=11 #横轴字体大小
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: siat
|
3
|
-
Version: 3.8.
|
3
|
+
Version: 3.8.10
|
4
4
|
Summary: Securities Investment Analysis Tools (siat)
|
5
5
|
Home-page: https://pypi.org/project/siat/
|
6
6
|
Author: Prof. WANG Dehong, International Business School, Beijing Foreign Studies University
|
@@ -40,14 +40,6 @@ Requires-Dist: translators
|
|
40
40
|
Requires-Dist: nbconvert
|
41
41
|
Requires-Dist: ipywidgets
|
42
42
|
Requires-Dist: playwright
|
43
|
-
Dynamic: author
|
44
|
-
Dynamic: author-email
|
45
|
-
Dynamic: description
|
46
|
-
Dynamic: description-content-type
|
47
|
-
Dynamic: home-page
|
48
|
-
Dynamic: license
|
49
|
-
Dynamic: requires-dist
|
50
|
-
Dynamic: summary
|
51
43
|
|
52
44
|
|
53
45
|
# What is siat?
|
@@ -6,31 +6,31 @@ siat/alpha_vantage_test.py,sha256=tKr-vmuFH3CZAqwmISz6jzjPHzV1JJl3sPfZdz8aTfM,74
|
|
6
6
|
siat/assets_liquidity.py,sha256=o_UZdLs693uNWPEQB2OzxDH0mdWimOmq4qe_vx1pue0,28987
|
7
7
|
siat/assets_liquidity_test.py,sha256=UWk6HIUlizU7LQZ890fGx8LwU1jMMrIZswg8cFUJWZ8,1285
|
8
8
|
siat/barrons_scraping_test.py,sha256=v5IioDB7CselbpjOX68fNPQYgm2UH4SKnz_q_MA4qGY,10464
|
9
|
-
siat/beta_adjustment.py,sha256=
|
10
|
-
siat/beta_adjustment_china.py,sha256=
|
9
|
+
siat/beta_adjustment.py,sha256=u_EZt3rEbvXDpqcJp_hUh9637P5vsrRHEfX6uG9Uin8,37292
|
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=
|
14
|
-
siat/bond_base.py,sha256=
|
15
|
-
siat/bond_china.py,sha256=
|
13
|
+
siat/bond.py,sha256=EA6D150F3ZE1CmevwhrLV-3A-8Q7nKQEErh94bT2bNs,109235
|
14
|
+
siat/bond_base.py,sha256=ClHJ5dzjoO9knGhX65Sbyk0i0uKQpmdKGUblR-wrXTs,37681
|
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
18
|
siat/capm_beta.py,sha256=cxXdRVBQBllhbfz1LeTJAIWvyRYhW54nhtNUXv4HwS0,29063
|
19
|
-
siat/capm_beta2.py,sha256
|
19
|
+
siat/capm_beta2.py,sha256=wGF_HmK_AiGWjpSAx79XHIxDghtI_ueYozvh06-2JEQ,33707
|
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=J8swDUe7K-9wqm6x29y9o_AlhCs2NW7aNQ4_n53vo-4,181182
|
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
|
26
26
|
siat/concepts_kpl.py,sha256=SJ9UaJp5i79EXKZ3dPa_vBEoG_zgl1Ig5rZAm-ubgM4,4941
|
27
27
|
siat/copyrights.py,sha256=YMLjZb328YpFMR-s_GUu0HBgeGce3pV7DgRut8S3I7w,690
|
28
|
-
siat/cryptocurrency.py,sha256=
|
28
|
+
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
32
|
siat/economy.py,sha256=BFVQDxOTbuizyumpCgpZIauH6sqnwUXebpqRMmQCzys,84198
|
33
|
-
siat/economy2.py,sha256=
|
33
|
+
siat/economy2.py,sha256=FOVf5WxKnge3dVEV2CEf--CupXhFtlRUc5k5FUMTD-Q,39857
|
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
|
@@ -42,10 +42,10 @@ 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=xx0SMpFqAMKm6cj8uYeG2RpJE6G-RoJ3NWa33UyaVMk,25414
|
44
44
|
siat/financial_statements_test.py,sha256=FLhx8JD-tVVWSBGux6AMz1jioXX4U4bp9DmgFHYXb_w,716
|
45
|
-
siat/financials.py,sha256=
|
45
|
+
siat/financials.py,sha256=6mmcOI03rJuz3xmrX_H46wTudgXLGtNqrwfuFZCiwaE,80739
|
46
46
|
siat/financials2 - 副本.py,sha256=dKlNjIfKeoSy055fQ6E6TUj9HEoO5Ney9grD84J5kfk,14389
|
47
|
-
siat/financials2.py,sha256=
|
48
|
-
siat/financials_china.py,sha256=
|
47
|
+
siat/financials2.py,sha256=N2qOfVQ2SE7T5kmMkAcccCOHIEwGylFDvB5_GxxOin0,51039
|
48
|
+
siat/financials_china.py,sha256=Hu85JOKnCmcTHgblIvHhsV-6c-Y15HFGNR_ZaaJt8nM,191974
|
49
49
|
siat/financials_china2.py,sha256=VvkzkjZeH84zwypR7ReldgJeZ7jnNw0qkzebvWMPm10,94956
|
50
50
|
siat/financials_china2_test.py,sha256=Erz5k4LyOplBBvYls2MypuqHpVNJ3daiLdyeJezNPu0,2722
|
51
51
|
siat/financials_china2_test2.py,sha256=C8CuYTMHN4Mhp-sTu-Bmg0zMXRCaYV6ezGDoYartRYQ,3507
|
@@ -55,25 +55,25 @@ siat/financials_china_test2.py,sha256=WkNlVW_0hGegdw1rzg4BP_dKR-smdyUp9Fr00K7mPZ
|
|
55
55
|
siat/financials_china_test2_fin_indicator.py,sha256=WkNlVW_0hGegdw1rzg4BP_dKR-smdyUp9Fr00K7mPZY,5924
|
56
56
|
siat/financials_test.py,sha256=HJ3CPo_Xckz2wXi3AEP6ZNWCF1Duc1pLi0Y10USiImc,23829
|
57
57
|
siat/fred_test.py,sha256=KF50ssSbsfpa_kT6iuomD0vG4eXztAcOasZxg1OGX5w,1201
|
58
|
-
siat/fund.py,sha256=
|
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=QovzNxO5EeWPZ_QbQvHtLthBls54NVat1vIEizXzBEc,136681
|
61
61
|
siat/fund_china_test.py,sha256=-Bh6m0J0GPpIbYXx-H2vpzJoNFI6pE2C2jVPa8DazgE,6649
|
62
62
|
siat/fund_test.py,sha256=V4ADb8Gsp8gyeFTwcgRsJBpnUih_O-Q2V1ILc5oKjK8,1116
|
63
63
|
siat/future_china.py,sha256=F-HsIf2Op8Z22RzTjet1g8COzldgnMjFNSXsAkeGyWo,17595
|
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=Qw17Gq2jjh8ftWpAM0TfWP7bojGlS48hMpOUSJar5HM,117447
|
68
68
|
siat/grafix_test.py,sha256=kXvcpLgQNO7wd30g_bWljLj5UH7bIVI0_dUtXbfiKR0,3150
|
69
|
-
siat/holding_risk.py,sha256=
|
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=
|
74
|
-
siat/markowitz.py,sha256=
|
73
|
+
siat/market_china.py,sha256=_2ienjsJsy-RAhdpnoBtRtPt8k_FVR8eDygywbFNnmM,50827
|
74
|
+
siat/markowitz.py,sha256=PtQ_6rLyh5SEXyO7SCDyYChcgXl6ddcdgQ06HETjDVE,97990
|
75
75
|
siat/markowitz2-20240620.py,sha256=irZAPnjaatFsKQmFRMENP-cO6bEUl2narYtkU5NKTWI,108019
|
76
|
-
siat/markowitz2.py,sha256=
|
76
|
+
siat/markowitz2.py,sha256=2FT3yzub2vdmC87L495BECyTwJXY6xcOFflI1lSstmQ,123237
|
77
77
|
siat/markowitz_ccb_test.py,sha256=xBkkoaNHdq9KSUrNuHGgKTdNYUvgi84kNYcf719eoyE,1593
|
78
78
|
siat/markowitz_ef_test.py,sha256=wjNlICkgRIqnonPeSIHo4Mu2GRtb9dr21wDt2kMNEcI,4032
|
79
79
|
siat/markowitz_old.py,sha256=Lf7O_4QWT8RsdkHiUyc_7kKY3eZjKDtFR89Fz3pwYnY,33046
|
@@ -84,21 +84,21 @@ 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=qrPQtMVjWTLvGy9m6elWhJlJnoQm-auX_nLDWINMJho,121005
|
88
88
|
siat/option_china_test.py,sha256=UQ-YUHUjoGBQyanLcM-yzqeEIUQP_gCQIeT0W6rnUnA,16355
|
89
89
|
siat/option_pricing.py,sha256=vyQNgBsjcJi70Pa-fJTVVIGK_3jWh80tkd1ESnn3sE4,74069
|
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/proxy_test.py,sha256=erQJrmGs2X46z8Gb1h-7GYQ0rTUcaR8dxHExWoBz2eM,2610
|
93
93
|
siat/quandl_test.py,sha256=EcPoXnLuqzPl5dKyVEZi3j3PJZFpsnU_iNPhLWC9p-A,1552
|
94
|
-
siat/risk_adjusted_return.py,sha256=
|
94
|
+
siat/risk_adjusted_return.py,sha256=6F8CpKm-HKO4wfnndri0ew-D3lDAH1fs5O9K5cphoLg,55096
|
95
95
|
siat/risk_adjusted_return2.py,sha256=59YDzhbvr8PRRzb1Ew_8fuGqV4lEitm6itpk54xEb48,84335
|
96
96
|
siat/risk_adjusted_return_test.py,sha256=m_VHL5AtT74cJv5i7taTeTfnkX48y0AFJk5phawyYWg,3416
|
97
|
-
siat/risk_evaluation.py,sha256=
|
97
|
+
siat/risk_evaluation.py,sha256=HK6U2G85-AxjSoeARbmTuiCNwTVdPdB9Znfgvslo0Os,76455
|
98
98
|
siat/risk_evaluation_test.py,sha256=YEXM96gKzTfwN4U61AS4Rr1tV7KgUvn4rRC6f3iMw9s,3731
|
99
99
|
siat/risk_free_rate.py,sha256=IBuRqA2kppdZsW4D4fapW7vnM5HMEXOn95A5r9Pkwlo,12384
|
100
100
|
siat/risk_free_rate_test.py,sha256=CpmhUf8aEAEZeNu4gvWP2Mz2dLoIgBX5bI41vfUBEr8,4285
|
101
|
-
siat/sector_china.py,sha256=
|
101
|
+
siat/sector_china.py,sha256=HbU3SokSWuwNKYFrbamS6qlXE8J8ZAyM3fWo4RskhEU,157074
|
102
102
|
siat/sector_china_test.py,sha256=1wq7ef8Bb_L8F0h0W6FvyBrIcBTEbrTV7hljtpj49U4,5843
|
103
103
|
siat/security_price.py,sha256=2oHskgiw41KMGfqtnA0i2YjNNV6cYgtlUK0j3YeuXWs,29185
|
104
104
|
siat/security_price2.py,sha256=dYwvz9H-uWp-Gyc1g_MId9k8cITS6ZHmjW-Fc2ypp-0,26587
|
@@ -106,10 +106,10 @@ siat/security_prices.py,sha256=HoCZ7YPrQYZHgKC-LyXFeeBCTfRc3EMMEiEg52SVv2w,10907
|
|
106
106
|
siat/security_prices_test.py,sha256=OEphoJ87NPKoNow1QA8EU_5MUYrJF-qKoWKNapVfZNI,10779
|
107
107
|
siat/security_trend.py,sha256=o0vpWdrJkmODCP94X-Bvn-w7efHhj9HpUYBHtLl55D0,17240
|
108
108
|
siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmWBPk,24854
|
109
|
-
siat/security_trend2.py,sha256=
|
109
|
+
siat/security_trend2.py,sha256=Ab4ZQzjD-xIunDAXHfcD6hVlQ2OqgsGPDKAXfrmW0E0,30576
|
110
110
|
siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
|
111
111
|
siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
|
112
|
-
siat/stock.py,sha256=
|
112
|
+
siat/stock.py,sha256=W3JhjfRwqb9luNydrKyGd97uRmTsZD5FvRdqJ3DynVo,159509
|
113
113
|
siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
|
114
114
|
siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
|
115
115
|
siat/stock_china.py,sha256=85Ggb21E2mrCYMdSSTTrkoyyLGXMK2V-BtlweHomSRg,93460
|
@@ -119,9 +119,9 @@ siat/stock_info_test.py,sha256=gfG3DbhDACbtD8wnv_R6zhj0t11XaC8NX8uLD9Qv3Fo,6122
|
|
119
119
|
siat/stock_list_china_test.py,sha256=gv14UwMMvkZqtb6G7DCTSuehIwVHuVwu7w60p6gyHoo,1014
|
120
120
|
siat/stock_prices_kneighbors.py,sha256=WfZvo5EyeBsm-T37zDj7Sl9dPSRq5Bx4JxIJ9IUum6s,36738
|
121
121
|
siat/stock_prices_linear.py,sha256=-OUKRr27L2aStQgJSlJOrJ4gay_G7P-m-7t7cU2Yoqk,13991
|
122
|
-
siat/stock_profile.py,sha256=
|
122
|
+
siat/stock_profile.py,sha256=BuvdrQ3bqIAUCaM2GxPR6_rUhigQQa_YMeUov2zY6Y0,26084
|
123
123
|
siat/stock_technical-20240620.py,sha256=A4x18mZgYSA8SSiDz4u_O3gd5oVRgbI6JIiBfFY0tVw,116013
|
124
|
-
siat/stock_technical.py,sha256=
|
124
|
+
siat/stock_technical.py,sha256=1P4FkOTPknG2m18NTgwMxN-NgwIAdW3qR09VoFz00Hc,140928
|
125
125
|
siat/stock_test.py,sha256=E9YJAvOw1VEGJSDI4IZuEjl0tGoisOIlN-g9UqA_IZE,19475
|
126
126
|
siat/stooq.py,sha256=SiRnSUu92pfzIZQ8N4Yo-9VOVSwUSqQE0wqXhF-4y9g,2493
|
127
127
|
siat/temp.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
@@ -144,8 +144,8 @@ siat/valuation_china.py,sha256=CVp1IwIsF3Om0J29RGkyxZLt4n9Ug-ua_RKhLwL9fUQ,69624
|
|
144
144
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
145
145
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
146
146
|
siat/yf_name.py,sha256=laNKMTZ9hdenGX3IZ7G0a2RLBKEWtUQJFY9CWuk_fp8,24058
|
147
|
-
siat-3.8.
|
148
|
-
siat-3.8.
|
149
|
-
siat-3.8.
|
150
|
-
siat-3.8.
|
151
|
-
siat-3.8.
|
147
|
+
siat-3.8.10.dist-info/LICENSE,sha256=NTEMMROY9_4U1szoKC3N2BLHcDd_o5uTgqdVH8tbApw,1071
|
148
|
+
siat-3.8.10.dist-info/METADATA,sha256=BjhxGSm9JIlTCe620pBWE36mrdR_5VUznsMLRqzVgvw,8144
|
149
|
+
siat-3.8.10.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
150
|
+
siat-3.8.10.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
151
|
+
siat-3.8.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|