siat 3.4.4__py3-none-any.whl → 3.4.6__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/financials_china.py +9 -4
- siat/stock.py +5 -5
- siat/stock_technical.py +2 -2
- {siat-3.4.4.dist-info → siat-3.4.6.dist-info}/METADATA +1 -1
- {siat-3.4.4.dist-info → siat-3.4.6.dist-info}/RECORD +7 -7
- {siat-3.4.4.dist-info → siat-3.4.6.dist-info}/WHEEL +1 -1
- {siat-3.4.4.dist-info → siat-3.4.6.dist-info}/top_level.txt +0 -0
siat/financials_china.py
CHANGED
@@ -57,6 +57,7 @@ if __name__=='__main__':
|
|
57
57
|
ticker='600791.SS'
|
58
58
|
|
59
59
|
ticker="601375.SS"
|
60
|
+
ticker="600305.SS"
|
60
61
|
|
61
62
|
akfs=get_fin_stmt_ak(ticker)
|
62
63
|
|
@@ -3427,8 +3428,8 @@ def str_contain_any_substr(astr,substrlist):
|
|
3427
3428
|
|
3428
3429
|
#==============================================================================
|
3429
3430
|
if __name__=='__main__':
|
3430
|
-
ticker='
|
3431
|
-
fsdates=['
|
3431
|
+
ticker='600305.SS'
|
3432
|
+
fsdates=['2023-6-30','2022-6-30','2021-6-30']
|
3432
3433
|
|
3433
3434
|
fsdf1=get_fin_summary_1ticker_china(ticker,fsdates)
|
3434
3435
|
|
@@ -3455,6 +3456,10 @@ def get_fin_summary_1ticker_china(ticker,fsdates):
|
|
3455
3456
|
_,t1,_=split_prefix_suffix(ticker)
|
3456
3457
|
dft=ak.stock_financial_abstract(t1)
|
3457
3458
|
|
3459
|
+
#akshare错误更正:此处的“营业成本”其实为“营业总成本”
|
3460
|
+
if ("营业成本" in list(dft['指标'])) and not ("营业总成本" in list(dft['指标'])):
|
3461
|
+
dft.loc[dft['指标']=="营业成本","指标"]="营业总成本"
|
3462
|
+
|
3458
3463
|
# 处理金额单位和百分号字段
|
3459
3464
|
# 选项-指标对照表
|
3460
3465
|
option_indicator_df=dft[['选项','指标']]
|
@@ -3633,7 +3638,7 @@ def compare_fin_summary_china(tickers,fsdates,facecolor='whitesmoke',font_size='
|
|
3633
3638
|
typelist=['常用指标','每股指标','营运能力','盈利能力','收益质量','成长能力','财务风险']
|
3634
3639
|
# 手工设定项目显示顺序,使其看起来更合理
|
3635
3640
|
typedict={'常用指标':
|
3636
|
-
['营业总收入(亿元)','
|
3641
|
+
['营业总收入(亿元)','营业总成本(亿元)',
|
3637
3642
|
'净利润(亿元)','扣非净利润(亿元)','归母净利润(亿元)',
|
3638
3643
|
'毛利率%','销售净利率%','期间费用率%',
|
3639
3644
|
'基本每股收益(元)','总资产报酬率(ROA)%','净资产收益率(ROE)%',
|
@@ -3642,7 +3647,7 @@ def compare_fin_summary_china(tickers,fsdates,facecolor='whitesmoke',font_size='
|
|
3642
3647
|
'资产负债率%','商誉(亿元)',],
|
3643
3648
|
|
3644
3649
|
'每股指标':
|
3645
|
-
['每股营业总收入(元)'
|
3650
|
+
['每股营业总收入(元)',#'每股营业收入(元)',
|
3646
3651
|
'每股息税前利润(元)','基本每股收益(元)','稀释每股收益(元)',
|
3647
3652
|
'每股净资产_最新股数(元)','摊薄每股净资产_期末股数(元)','调整每股净资产_期末股数(元)',
|
3648
3653
|
'每股未分配利润(元)','每股留存收益(元)','每股盈余公积金(元)','每股资本公积金(元)',
|
siat/stock.py
CHANGED
@@ -2453,10 +2453,10 @@ def candlestick_demo(stkcd,fromdate,todate, \
|
|
2453
2453
|
low_txt=text_lang('最低价','Low')
|
2454
2454
|
close_txt=text_lang('收盘价','Close')
|
2455
2455
|
|
2456
|
-
plt.plot(p.index,p['Open'],color='green',ls="--",label=open_txt,marker='>',markersize=10,linewidth=2)
|
2457
|
-
plt.plot(p.index,p['High'],color='cyan',ls="-.",label=high_txt,marker='^',markersize=10,linewidth=2)
|
2458
|
-
plt.plot(p.index,p['Low'],color='k',ls=":",label=low_txt,marker='v',markersize=10,linewidth=2)
|
2459
|
-
plt.plot(p.index,p['Close'],color='blue',ls="-",label=close_txt,marker='<',markersize=10,linewidth=2)
|
2456
|
+
plt.plot(p.index,p['Open'],color='green',ls="--",label=open_txt,marker='>',markersize=10,linewidth=2,alpha=0.5)
|
2457
|
+
plt.plot(p.index,p['High'],color='cyan',ls="-.",label=high_txt,marker='^',markersize=10,linewidth=2,alpha=0.5)
|
2458
|
+
plt.plot(p.index,p['Low'],color='k',ls=":",label=low_txt,marker='v',markersize=10,linewidth=2,alpha=0.5)
|
2459
|
+
plt.plot(p.index,p['Close'],color='blue',ls="-",label=close_txt,marker='<',markersize=10,linewidth=2,alpha=0.5)
|
2460
2460
|
|
2461
2461
|
#绘制蜡烛图
|
2462
2462
|
try:
|
@@ -2468,7 +2468,7 @@ def candlestick_demo(stkcd,fromdate,todate, \
|
|
2468
2468
|
return None
|
2469
2469
|
|
2470
2470
|
#candlestick_ohlc(ax,b,colorup=colorup,colordown=colordown,width=width,alpha=0.5)
|
2471
|
-
candlestick_ohlc(ax,b,colorup=colorup,colordown=colordown,width=width)
|
2471
|
+
candlestick_ohlc(ax,b,colorup=colorup,colordown=colordown,width=width,alpha=0.5)
|
2472
2472
|
|
2473
2473
|
ax.xaxis_date() #draw dates in x axis
|
2474
2474
|
ax.autoscale_view()
|
siat/stock_technical.py
CHANGED
@@ -2267,7 +2267,7 @@ def security_bollinger(ticker,fromdate,todate,boll_days=20, \
|
|
2267
2267
|
|
2268
2268
|
y_label=text_lang('价格',"Price")
|
2269
2269
|
import datetime; today = datetime.date.today()
|
2270
|
-
x_label=text_lang("
|
2270
|
+
x_label=text_lang("数据来源:Sina/EM/Stooq/Yahoo,","Data source: Sina/EM/Stooq/Yahoo, ")+str(today)
|
2271
2271
|
|
2272
2272
|
axhline_value=0
|
2273
2273
|
axhline_label=''
|
@@ -2444,7 +2444,7 @@ def security_bubble(ticker,fromdate,todate,boll_years=7, \
|
|
2444
2444
|
|
2445
2445
|
y_label=indicatorname
|
2446
2446
|
import datetime; today = datetime.date.today()
|
2447
|
-
x_label="
|
2447
|
+
x_label="数据来源:Sina/EM/Stooq/Yahoo,"+str(today)+",估值前置窗口期"+str(boll_years)+"年"
|
2448
2448
|
|
2449
2449
|
axhline_value=0
|
2450
2450
|
axhline_label=''
|
@@ -41,7 +41,7 @@ siat/financial_statements_test.py,sha256=FLhx8JD-tVVWSBGux6AMz1jioXX4U4bp9DmgFHY
|
|
41
41
|
siat/financials.py,sha256=mbEZSNeHMMFcnPUryQWvdmNlWQvpnOG9eItgS7IVw3k,80458
|
42
42
|
siat/financials2 - 副本.py,sha256=dKlNjIfKeoSy055fQ6E6TUj9HEoO5Ney9grD84J5kfk,14389
|
43
43
|
siat/financials2.py,sha256=7mnsTncKsgwFu8PP4refh5C5iMIO9P0KOMSF87ZyncY,45736
|
44
|
-
siat/financials_china.py,sha256=
|
44
|
+
siat/financials_china.py,sha256=Pgi-CTl7ZT_RxHt70N7wBjMQ_UUAqZFClLh6GpcK0MQ,191709
|
45
45
|
siat/financials_china2.py,sha256=tUvWZhUORrZ0EuCVVkJifbO-8d_hXUyA73OPmOX1CL0,92862
|
46
46
|
siat/financials_china2_test.py,sha256=Erz5k4LyOplBBvYls2MypuqHpVNJ3daiLdyeJezNPu0,2722
|
47
47
|
siat/financials_china2_test2.py,sha256=C8CuYTMHN4Mhp-sTu-Bmg0zMXRCaYV6ezGDoYartRYQ,3507
|
@@ -105,7 +105,7 @@ siat/security_trend2-20240620.py,sha256=QVnEcb7AyVbO77jVqfFsJffGXrX8pgJ9xCfoAKmW
|
|
105
105
|
siat/security_trend2.py,sha256=lUMab8HilXIUPo_z9ZkztMiZ5kf3jAbbCwPPkYbQ1TI,25288
|
106
106
|
siat/setup.py,sha256=up65rQGLmTBkhtaMLowjoQXYmIsnycnm4g1SYmeQS6o,1335
|
107
107
|
siat/shenwan index history test.py,sha256=JCVAzOSEldHalhSFa3pqD8JI_8_djPMQOxpkuYU-Esg,1418
|
108
|
-
siat/stock.py,sha256=
|
108
|
+
siat/stock.py,sha256=22HTy0BfmynrkWuprNGlfRsYuWdTyCV0CJ9t_w5x238,152444
|
109
109
|
siat/stock_advice_linear.py,sha256=-twT7IGP-NEplkL1WPSACcNJjggRB2j4mlAQCkzOAuo,31655
|
110
110
|
siat/stock_base.py,sha256=uISvbRyOGy8p9QREA96CVydgflBkn5L3OXOGKl8oanc,1312
|
111
111
|
siat/stock_china.py,sha256=zyUyghIrkkkYWlHRRP7Hoblxzfp-jrck60pTJpwMahg,91553
|
@@ -117,7 +117,7 @@ siat/stock_prices_kneighbors.py,sha256=WfZvo5EyeBsm-T37zDj7Sl9dPSRq5Bx4JxIJ9IUum
|
|
117
117
|
siat/stock_prices_linear.py,sha256=-OUKRr27L2aStQgJSlJOrJ4gay_G7P-m-7t7cU2Yoqk,13991
|
118
118
|
siat/stock_profile.py,sha256=B3eIwzEmiCqiCaxIlhfdEPsQBoW1PFOe1hkiY3mVF6Y,26038
|
119
119
|
siat/stock_technical-20240620.py,sha256=A4x18mZgYSA8SSiDz4u_O3gd5oVRgbI6JIiBfFY0tVw,116013
|
120
|
-
siat/stock_technical.py,sha256=
|
120
|
+
siat/stock_technical.py,sha256=WpiB-e1u3PqUqu8uyY0xFP2rxXNvY9L9f7DZ7V4LQnU,136062
|
121
121
|
siat/stock_test.py,sha256=E9YJAvOw1VEGJSDI4IZuEjl0tGoisOIlN-g9UqA_IZE,19475
|
122
122
|
siat/stooq.py,sha256=dOc_S5HLrYg48YAKTCs1eX8UTJOOkPM8qLL2KupqlLY,2470
|
123
123
|
siat/temp.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
@@ -139,7 +139,7 @@ siat/valuation_china.py,sha256=EkZQaVkoBjM0c4MCNbaX-bMnlG0e3FXeaWczZDnkptU,67784
|
|
139
139
|
siat/valuation_market_china_test.py,sha256=gbJ0ioauuo4koTPH6WKUkqcXiQPafnbhU5eKJ6lpdLA,1571
|
140
140
|
siat/var_model_validation.py,sha256=R0caWnuZarrRg9939hxh3vJIIpIyPfvelYmzFNZtPbo,14910
|
141
141
|
siat/yf_name.py,sha256=H1EM8YYXA8nQHIqsJlso0I3HKPiJLT3QujO4gRVQXWs,13945
|
142
|
-
siat-3.4.
|
143
|
-
siat-3.4.
|
144
|
-
siat-3.4.
|
145
|
-
siat-3.4.
|
142
|
+
siat-3.4.6.dist-info/METADATA,sha256=Agk7WFoMV7XNYw3oVZAWg1hEo1UmDFKgavjPoVFN0z8,7309
|
143
|
+
siat-3.4.6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
144
|
+
siat-3.4.6.dist-info/top_level.txt,sha256=r1cVyL7AIKqeAmEJjNR8FMT20OmEzufDstC2gv3NvEY,5
|
145
|
+
siat-3.4.6.dist-info/RECORD,,
|
File without changes
|